public static enum Keyword.F extends Enum<Keyword.F>
| Modifier and Type | Field and Description |
|---|---|
static Lang.Transformer<String,Keyword> |
FROM_STRING |
| Modifier and Type | Method and Description |
|---|---|
static Keyword.F |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Keyword.F[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Lang.Transformer<String,Keyword> FROM_STRING
public static Keyword.F[] values()
for (Keyword.F c : Keyword.F.values()) System.out.println(c);
public static Keyword.F 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 © 2014–2019 OSGL (Open Source General Library). All rights reserved.