daikon
Enum VarInfo.LangFlags
Object
Enum<VarInfo.LangFlags>
VarInfo.LangFlags
- All Implemented Interfaces:
- Serializable, Comparable<VarInfo.LangFlags>
- Enclosing class:
- VarInfo
public static enum VarInfo.LangFlags
- extends Enum<VarInfo.LangFlags>
PUBLIC
public static final VarInfo.LangFlags PUBLIC
PRIVATE
public static final VarInfo.LangFlags PRIVATE
PROTECTED
public static final VarInfo.LangFlags PROTECTED
STATIC
public static final VarInfo.LangFlags STATIC
FINAL
public static final VarInfo.LangFlags FINAL
SYNCHRONIZED
public static final VarInfo.LangFlags SYNCHRONIZED
VOLATILE
public static final VarInfo.LangFlags VOLATILE
TRANSIENT
public static final VarInfo.LangFlags TRANSIENT
ANNOTATION
public static final VarInfo.LangFlags ANNOTATION
ENUM
public static final VarInfo.LangFlags ENUM
values
public static VarInfo.LangFlags[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (VarInfo.LangFlags c : VarInfo.LangFlags.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static VarInfo.LangFlags valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null