public enum Repetition extends Enum<Repetition>
| Enum Constant and Description |
|---|
NO_REPEAT |
REPEAT |
REPEAT_X |
REPEAT_Y |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
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.
|
public 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 nullpublic String toString()
toString in class Enum<Repetition>Copyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.