org.basex.build.fs.parser
Enum Metadata.DateField

java.lang.Object
  extended by java.lang.Enum<Metadata.DateField>
      extended by org.basex.build.fs.parser.Metadata.DateField
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Metadata.DateField>
Enclosing class:
Metadata

public static enum Metadata.DateField
extends java.lang.Enum<Metadata.DateField>

Available metadata fields with data type date.

Author:
Bastian Lemke

Enum Constant Summary
DATE
          Other date.
DATE_ATTRIBUTE_MODIFIED
          Date of the last change made to a metadata attribute.
DATE_CONTENT_MODIFIED
          Date of the last change made to the content.
DATE_CREATED
          Date when the content was created.
DATE_LAST_USED
          Date of the last usage.
 
Method Summary
 byte[] get()
          Returns the enum value as byte array.
static Metadata.DateField valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Metadata.DateField[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DATE_ATTRIBUTE_MODIFIED

public static final Metadata.DateField DATE_ATTRIBUTE_MODIFIED
Date of the last change made to a metadata attribute.


DATE_CONTENT_MODIFIED

public static final Metadata.DateField DATE_CONTENT_MODIFIED
Date of the last change made to the content.


DATE_LAST_USED

public static final Metadata.DateField DATE_LAST_USED
Date of the last usage.


DATE_CREATED

public static final Metadata.DateField DATE_CREATED
Date when the content was created.


DATE

public static final Metadata.DateField DATE
Other date.

Method Detail

values

public static Metadata.DateField[] 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 (Metadata.DateField c : Metadata.DateField.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Metadata.DateField valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

get

public byte[] get()
Returns the enum value as byte array.

Returns:
the enum value.