public enum ServerAssetUse extends Enum<ServerAssetUse> implements Serializable
| Enum Constant and Description |
|---|
Governs
The server capability provides management or oversight of the asset.
|
Maintains
The server capability keeps the asset up-to-date.
|
Other
Another usage.
|
Owns
The server capability is accountable for the maintenance and protection of the asset.
|
Uses
The server capability consumes the content of the asset.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the ServerAssetUse enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
static ServerAssetUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerAssetUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerAssetUse Owns
public static final ServerAssetUse Governs
public static final ServerAssetUse Maintains
public static final ServerAssetUse Uses
public static final ServerAssetUse Other
public static ServerAssetUse[] values()
for (ServerAssetUse c : ServerAssetUse.values()) System.out.println(c);
public static ServerAssetUse 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 int getOrdinal()
public String getDescription()
public String getName()
Copyright © 2018 ODPi. All rights reserved.