public enum ArtifactType extends Enum<ArtifactType>
| Enum Constant and Description |
|---|
BINARY
type value that designates a binary
|
DIRECTORY
type that designates a directory
|
FILE
type that designates a file
|
HINT
type that specifies a hint node that should not be deleted
|
PRIMARY
type value that designates primary data
|
| Modifier and Type | Method and Description |
|---|---|
static ArtifactType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArtifactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtifactType PRIMARY
public static final ArtifactType BINARY
public static final ArtifactType DIRECTORY
public static final ArtifactType FILE
public static final ArtifactType HINT
public static ArtifactType[] values()
for (ArtifactType c : ArtifactType.values()) System.out.println(c);
public static ArtifactType 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 © 2010 - 2020 Adobe. All Rights Reserved