public static enum LoopTranslation.LoopStyle extends Enum<LoopTranslation.LoopStyle>
| Enum Constant and Description |
|---|
FAST_ENUMERATION |
JAVA_ITERATOR |
| Modifier and Type | Method and Description |
|---|---|
static LoopTranslation.LoopStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoopTranslation.LoopStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoopTranslation.LoopStyle JAVA_ITERATOR
public static final LoopTranslation.LoopStyle FAST_ENUMERATION
public static LoopTranslation.LoopStyle[] values()
for (LoopTranslation.LoopStyle c : LoopTranslation.LoopStyle.values()) System.out.println(c);
public static LoopTranslation.LoopStyle 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 nullCopyright © 2017. All rights reserved.