public enum ArtifactType extends java.lang.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(java.lang.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(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"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"