public enum DescriptionType extends Enum<DescriptionType>
| Enum Constant and Description |
|---|
Abstract
A brief description of the resource and the context in which the resource was created.
|
Methods
The methodology employed for the study or research.
|
Other
Other description information that does not fit into an existing category.
|
SeriesInformation
Information about a repeating series, such as volume, issue, number.
|
TableOfContents
A listing of the Table of Contents.
|
TechnicalInfo
Detailed information that may be associated with design, implementation, operation, use, and/or maintenance of a process or system.
|
| Modifier and Type | Method and Description |
|---|---|
static DescriptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DescriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DescriptionType Abstract
public static final DescriptionType Methods
public static final DescriptionType SeriesInformation
public static final DescriptionType TableOfContents
public static final DescriptionType TechnicalInfo
public static final DescriptionType Other
public static DescriptionType[] values()
for (DescriptionType c : DescriptionType.values()) System.out.println(c);
public static DescriptionType 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 © 2017–2018. All rights reserved.