public static enum DescriptorManager.PlatformSupport extends java.lang.Enum<DescriptorManager.PlatformSupport>
| Enum Constant and Description |
|---|
PLATFORM_IS_SUPPORTED
Has intentional support for platform
|
PLATFORM_NEUTRAL
Does not support, nor deny given platform
|
PLATFORM_NOT_SUPPORTED
Explicitly deny support for platform
|
| Modifier and Type | Method and Description |
|---|---|
static DescriptorManager.PlatformSupport |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DescriptorManager.PlatformSupport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DescriptorManager.PlatformSupport PLATFORM_NOT_SUPPORTED
public static final DescriptorManager.PlatformSupport PLATFORM_IS_SUPPORTED
public static final DescriptorManager.PlatformSupport PLATFORM_NEUTRAL
public static DescriptorManager.PlatformSupport[] values()
for (DescriptorManager.PlatformSupport c : DescriptorManager.PlatformSupport.values()) System.out.println(c);
public static DescriptorManager.PlatformSupport 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