public enum RemoteSupportState extends Enum<RemoteSupportState>
Enum Constant and Description |
---|
Closed |
Error |
None |
Open |
Pending |
Received |
Submitted |
Modifier and Type | Method and Description |
---|---|
static RemoteSupportState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteSupportState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteSupportState Closed
public static final RemoteSupportState Error
public static final RemoteSupportState None
public static final RemoteSupportState Open
public static final RemoteSupportState Pending
public static final RemoteSupportState Received
public static final RemoteSupportState Submitted
public static RemoteSupportState[] values()
for (RemoteSupportState c : RemoteSupportState.values()) System.out.println(c);
public static RemoteSupportState 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 nullCopyright © 2017. All rights reserved.