Enum Class DataLicenseNames

java.lang.Object
java.lang.Enum<DataLicenseNames>
org.re3data.schema._2_2.DataLicenseNames
All Implemented Interfaces:
Serializable, Comparable<DataLicenseNames>, Constable

public enum DataLicenseNames extends Enum<DataLicenseNames>

Java class for dataLicenseNames.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="dataLicenseNames">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Apache License 2.0"/>
     <enumeration value="BSD"/>
     <enumeration value="CC"/>
     <enumeration value="CC0"/>
     <enumeration value="Copyrights"/>
     <enumeration value="ODC"/>
     <enumeration value="OGL"/>
     <enumeration value="OGLC"/>
     <enumeration value="Public Domain"/>
     <enumeration value="RL"/>
     <enumeration value="other"/>
     <enumeration value="none"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

  • Method Details

    • values

      public static DataLicenseNames[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DataLicenseNames valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static DataLicenseNames fromValue(String v)