public static enum DescriptorManager.ConversionSupport extends java.lang.Enum<DescriptorManager.ConversionSupport>
| Enum Constant and Description | 
|---|
DESCRIPTOR_CONVERSION_NOT_NEEDED
Descriptor can be used as-is in target platform 
 | 
DESCRIPTOR_CONVERSION_NOT_SUPPORTED
Will not convert the descriptor 
 | 
DESCRIPTOR_CONVERSION_SUPPORTED
Will convert it 
 | 
DESCRIPTOR_NOT_NEEDED
Specified descriptor is not needed for the platform 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DescriptorManager.ConversionSupport | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DescriptorManager.ConversionSupport[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DescriptorManager.ConversionSupport DESCRIPTOR_CONVERSION_NOT_SUPPORTED
public static final DescriptorManager.ConversionSupport DESCRIPTOR_CONVERSION_SUPPORTED
public static final DescriptorManager.ConversionSupport DESCRIPTOR_CONVERSION_NOT_NEEDED
public static final DescriptorManager.ConversionSupport DESCRIPTOR_NOT_NEEDED
public static DescriptorManager.ConversionSupport[] values()
for (DescriptorManager.ConversionSupport c : DescriptorManager.ConversionSupport.values()) System.out.println(c);
public static DescriptorManager.ConversionSupport 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