Enum DepositionMetadata.PublicationType
- java.lang.Object
-
- java.lang.Enum<DepositionMetadata.PublicationType>
-
- org.gcube.data.publishing.ckan2zenodo.model.zenodo.DepositionMetadata.PublicationType
-
- All Implemented Interfaces:
Serializable,Comparable<DepositionMetadata.PublicationType>
- Enclosing class:
- DepositionMetadata
public static enum DepositionMetadata.PublicationType extends Enum<DepositionMetadata.PublicationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description annotationcollectionarticlebookconferencepaperdatamanagementplandeliverablemilestoneotherpatentpreprintproposalreportsectionsoftwaredocumentationtaxonomictreatmenttechincalnotethesisworkingpaper
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DepositionMetadata.PublicationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DepositionMetadata.PublicationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
annotationcollection
public static final DepositionMetadata.PublicationType annotationcollection
-
book
public static final DepositionMetadata.PublicationType book
-
section
public static final DepositionMetadata.PublicationType section
-
conferencepaper
public static final DepositionMetadata.PublicationType conferencepaper
-
datamanagementplan
public static final DepositionMetadata.PublicationType datamanagementplan
-
article
public static final DepositionMetadata.PublicationType article
-
patent
public static final DepositionMetadata.PublicationType patent
-
preprint
public static final DepositionMetadata.PublicationType preprint
-
deliverable
public static final DepositionMetadata.PublicationType deliverable
-
milestone
public static final DepositionMetadata.PublicationType milestone
-
proposal
public static final DepositionMetadata.PublicationType proposal
-
report
public static final DepositionMetadata.PublicationType report
-
softwaredocumentation
public static final DepositionMetadata.PublicationType softwaredocumentation
-
taxonomictreatment
public static final DepositionMetadata.PublicationType taxonomictreatment
-
techincalnote
public static final DepositionMetadata.PublicationType techincalnote
-
thesis
public static final DepositionMetadata.PublicationType thesis
-
workingpaper
public static final DepositionMetadata.PublicationType workingpaper
-
other
public static final DepositionMetadata.PublicationType other
-
-
Method Detail
-
values
public static DepositionMetadata.PublicationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DepositionMetadata.PublicationType c : DepositionMetadata.PublicationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DepositionMetadata.PublicationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-