public static enum Artifact.ArtifactType extends Enum<Artifact.ArtifactType>
Enumeration of possible artifact types.
Enum Constant and Description |
---|
Background
Background artifacts.
|
Layout
Layout artifacts.
|
Page
Page artifacts.
|
Pagination
Pagination artifacts.
|
Undefined
Artifact type is not defined or unknown.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Artifact.ArtifactType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Artifact.ArtifactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Artifact.ArtifactType Pagination
Pagination artifacts. Ancillary page features such as running heads and folios (page numbers).
public static final Artifact.ArtifactType Layout
Layout artifacts. Purely cosmetic typographical or design elements such as footnote rules or background screens.
public static final Artifact.ArtifactType Page
Page artifacts. Production aids extraneous to the document itself, such as cut marks and colour bars.
public static final Artifact.ArtifactType Background
Background artifacts. Images, patterns or coloured blocks.
public static final Artifact.ArtifactType Undefined
Artifact type is not defined or unknown.
public static Artifact.ArtifactType[] values()
for (Artifact.ArtifactType c : Artifact.ArtifactType.values()) System.out.println(c);
public static Artifact.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 nullpublic int getValue()
Copyright © 2023 Aspose. All Rights Reserved.