public static enum AssetTypeBase.ScopeEnum extends Enum<AssetTypeBase.ScopeEnum>
Modifier and Type | Method and Description |
---|---|
static AssetTypeBase.ScopeEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static AssetTypeBase.ScopeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssetTypeBase.ScopeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssetTypeBase.ScopeEnum PUBLIC
public static final AssetTypeBase.ScopeEnum PRIVATE
public static AssetTypeBase.ScopeEnum[] values()
for (AssetTypeBase.ScopeEnum c : AssetTypeBase.ScopeEnum.values()) System.out.println(c);
public static AssetTypeBase.ScopeEnum 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 nullpublic String getValue()
public String toString()
toString
in class Enum<AssetTypeBase.ScopeEnum>
public static AssetTypeBase.ScopeEnum fromValue(String text)