public enum Repetition extends Enum<Repetition> implements Key
| Enum Constant and Description |
|---|
NO_REPEAT
No repeat, neither direction.
|
REPEAT
Repeats both directions.
|
REPEAT_X
Repeats horizontal only.
|
REPEAT_Y
Repeats vertical only.
|
| Modifier and Type | Method and Description |
|---|---|
String |
value()
Returns the name value of property
|
static Repetition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Repetition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcheckAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValidpublic static final Repetition NO_REPEAT
public static final Repetition REPEAT
public static final Repetition REPEAT_X
public static final Repetition REPEAT_Y
public static Repetition[] values()
for (Repetition c : Repetition.values()) System.out.println(c);
public static Repetition valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null