public enum TitleType extends Enum<TitleType>
Title.
Source: https://schema.datacite.org/meta/kernel-4.0/doc/DataCite-MetadataKernel_v4.0.pdf| Enum Constant and Description |
|---|
AlternativeTitle
An alternative title variant of the main title.
|
Other
A title that does not match any other types and is not the main title.
|
Subtitle
An extension of the main title.
|
TranslatedTitle
A title that is translated from the standard language (?)
This type is not properly documented and may be interpreted wrongly.
|
| Modifier and Type | Method and Description |
|---|---|
static TitleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TitleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TitleType AlternativeTitle
public static final TitleType Subtitle
public static final TitleType TranslatedTitle
public static final TitleType Other
public static TitleType[] values()
for (TitleType c : TitleType.values()) System.out.println(c);
public static TitleType 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–2019. All rights reserved.