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