public static enum Asset.AssetStatusEnum extends Enum<Asset.AssetStatusEnum>
| Enum Constant and Description |
|---|
DISPOSED |
DRAFT |
REGISTERED |
| Modifier and Type | Method and Description |
|---|---|
static Asset.AssetStatusEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static Asset.AssetStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Asset.AssetStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Asset.AssetStatusEnum DRAFT
public static final Asset.AssetStatusEnum REGISTERED
public static final Asset.AssetStatusEnum DISPOSED
public static Asset.AssetStatusEnum[] values()
for (Asset.AssetStatusEnum c : Asset.AssetStatusEnum.values()) System.out.println(c);
public static Asset.AssetStatusEnum 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<Asset.AssetStatusEnum>public static Asset.AssetStatusEnum fromValue(String value)
Copyright © 2019. All rights reserved.