public enum DateType extends Enum<DateType>
| Enum Constant and Description |
|---|
Accepted
The date that the publisher accepted the resource into their system.
|
Available
The date the resource is made publicly available.
|
Collected
The date or date range in which the resource content was collected.
|
Copyrighted
The specific, documented date at which the resource receives a copyrighted status, if applicable.
|
Created
The date the resource itself was put together; this could be a date range or a single date for a final component,
e.g.
|
Issued
The date that the resource is published or distributed e.g.
|
Other
This type should be applied if the date does not fit any of the other categories.
|
Submitted
The date the creator submits the resource to the publisher.
|
Updated
The date of the last update to the resource, when the resource is being added to.
|
Valid
The date or date range during which the dataset or resource is accurate.
|
Withdrawn
The date the resource is removed.
|
| Modifier and Type | Method and Description |
|---|---|
static DateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateType Accepted
public static final DateType Available
public static final DateType Copyrighted
public static final DateType Collected
public static final DateType Created
public static final DateType Issued
public static final DateType Submitted
public static final DateType Updated
public static final DateType Valid
public static final DateType Withdrawn
public static final DateType Other
public static DateType[] values()
for (DateType c : DateType.values()) System.out.println(c);
public static DateType 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.