public enum SupportState extends Enum<SupportState>
Enum Constant and Description |
---|
Disabled |
DisableRequested |
Enabled |
EnableRequested |
NotSupported |
PendingDisable |
PendingEnable |
Modifier and Type | Method and Description |
---|---|
static SupportState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportState Disabled
public static final SupportState DisableRequested
public static final SupportState Enabled
public static final SupportState EnableRequested
public static final SupportState NotSupported
public static final SupportState PendingDisable
public static final SupportState PendingEnable
public static SupportState[] values()
for (SupportState c : SupportState.values()) System.out.println(c);
public static SupportState 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.