public static enum MainUtils.FlagType extends Enum<MainUtils.FlagType>
Enum Constant and Description |
---|
ANY |
DOUBLE |
ENUM |
INT |
LONG |
MULT |
STRING |
VOID |
Modifier and Type | Method and Description |
---|---|
static MainUtils.FlagType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MainUtils.FlagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MainUtils.FlagType VOID
public static final MainUtils.FlagType STRING
public static final MainUtils.FlagType INT
public static final MainUtils.FlagType LONG
public static final MainUtils.FlagType DOUBLE
public static final MainUtils.FlagType MULT
public static final MainUtils.FlagType ENUM
public static final MainUtils.FlagType ANY
public static MainUtils.FlagType[] values()
for (MainUtils.FlagType c : MainUtils.FlagType.values()) System.out.println(c);
public static MainUtils.FlagType 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 © 2019. All rights reserved.