public static enum Artifact.ArtifactSubtype extends Enum<Artifact.ArtifactSubtype>
Enumeration of possible artifacts subtype.
Enum Constant and Description |
---|
Background
Background artifact.
|
Footer
Footer artifact.
|
Header
Header artifact.
|
Undefined
Artifact subtype is not defined or unknown.
|
Watermark
Watermark artifact.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Artifact.ArtifactSubtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Artifact.ArtifactSubtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Artifact.ArtifactSubtype Header
Header artifact.
public static final Artifact.ArtifactSubtype Footer
Footer artifact.
public static final Artifact.ArtifactSubtype Watermark
Watermark artifact.
public static final Artifact.ArtifactSubtype Background
Background artifact.
public static final Artifact.ArtifactSubtype Undefined
Artifact subtype is not defined or unknown.
public static Artifact.ArtifactSubtype[] values()
for (Artifact.ArtifactSubtype c : Artifact.ArtifactSubtype.values()) System.out.println(c);
public static Artifact.ArtifactSubtype 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 nullpublic int getValue()
Copyright © 2023 Aspose. All Rights Reserved.