public enum LeaderPattern extends java.lang.Enum<LeaderPattern>
Enum Constant and Description |
---|
DOTS
Leader is to be filled with a repeating sequence of dots.
|
RULE
Leader is to be filled with a rule (a line, but not necessarily a solid
line).
|
SPACE
Leader is to be filled with blank space.
|
USE_CONTENT
Leader is to be filled with a specified repeating pattern.
|
Modifier and Type | Method and Description |
---|---|
static LeaderPattern |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LeaderPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeaderPattern SPACE
public static final LeaderPattern RULE
public static final LeaderPattern DOTS
public static final LeaderPattern USE_CONTENT
public static LeaderPattern[] values()
for (LeaderPattern c : LeaderPattern.values()) System.out.println(c);
public static LeaderPattern valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.