public static enum DeployResource.Type extends Enum<DeployResource.Type>
Enum Constant and Description |
---|
data |
icon |
jar |
jnlp |
license |
nativelib |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static DeployResource.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeployResource.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeployResource.Type UNKNOWN
public static final DeployResource.Type jnlp
public static final DeployResource.Type jar
public static final DeployResource.Type nativelib
public static final DeployResource.Type icon
public static final DeployResource.Type license
public static final DeployResource.Type data
public static DeployResource.Type[] values()
for (DeployResource.Type c : DeployResource.Type.values()) System.out.println(c);
public static DeployResource.Type 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 © 2020. All rights reserved.