public enum RunAsAccountType extends java.lang.Enum<RunAsAccountType>
| Enum Constant and Description |
|---|
SYSTEM
system
|
UNEXPECTED_VALUE
For RunAsAccountType values that were not expected from the service
|
USER
user
|
| Modifier and Type | Method and Description |
|---|---|
static RunAsAccountType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RunAsAccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunAsAccountType SYSTEM
public static final RunAsAccountType USER
public static final RunAsAccountType UNEXPECTED_VALUE
public static RunAsAccountType[] values()
for (RunAsAccountType c : RunAsAccountType.values()) System.out.println(c);
public static RunAsAccountType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null