public enum DirectoryStatus extends java.lang.Enum<DirectoryStatus>
{A50CA1FC-85A9-4A7A-B755-68C3DB01CAF1}
Enum Constant and Description |
---|
Close
Guest directory has been closed.
|
Down
Service/OS is stopping, guest directory was closed.
|
Error
Something went wrong.
|
Open
Guest directory has been successfully opened.
|
Rewind
Guest directory reading was rewound.
|
Undefined
Directory is in an undefined state.
|
Modifier and Type | Method and Description |
---|---|
static DirectoryStatus |
fromValue(long v) |
static DirectoryStatus |
fromValue(java.lang.String v) |
int |
value() |
static DirectoryStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectoryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectoryStatus Undefined
public static final DirectoryStatus Open
public static final DirectoryStatus Close
public static final DirectoryStatus Rewind
public static final DirectoryStatus Down
public static final DirectoryStatus Error
public static DirectoryStatus[] values()
for (DirectoryStatus c : DirectoryStatus.values()) System.out.println(c);
public static DirectoryStatus 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 nullpublic int value()
public static DirectoryStatus fromValue(long v)
public static DirectoryStatus fromValue(java.lang.String v)