Enum LegalConstraintsType
- java.lang.Object
-
- java.lang.Enum<LegalConstraintsType>
-
- org.citygml4j.binding.cityjson.metadata.LegalConstraintsType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LegalConstraintsType>
public enum LegalConstraintsType extends java.lang.Enum<LegalConstraintsType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LegalConstraintsType
fromValue(java.lang.String value)
java.lang.String
getValue()
java.lang.String
toString()
static LegalConstraintsType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LegalConstraintsType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COPYRIGHT
@SerializedName("copyright") public static final LegalConstraintsType COPYRIGHT
-
PATENT
@SerializedName("patent") public static final LegalConstraintsType PATENT
-
PATENT_PENDING
@SerializedName("patentPending") public static final LegalConstraintsType PATENT_PENDING
-
TRADEMARK
@SerializedName("trademark") public static final LegalConstraintsType TRADEMARK
-
LICENSE
@SerializedName("licence") public static final LegalConstraintsType LICENSE
-
INTELLECTUAL_PROPERTY_RIGHTS
@SerializedName("intellectualPropertyRights") public static final LegalConstraintsType INTELLECTUAL_PROPERTY_RIGHTS
-
RESTRICTED
@SerializedName("restricted") public static final LegalConstraintsType RESTRICTED
-
OTHER_RESTRICTIONS
@SerializedName("otherRestrictions") public static final LegalConstraintsType OTHER_RESTRICTIONS
-
UNRESTRICTED
@SerializedName("unrestricted") public static final LegalConstraintsType UNRESTRICTED
-
LICENSE_UNRESTRICTED
@SerializedName("licenseUnrestricted") public static final LegalConstraintsType LICENSE_UNRESTRICTED
-
LICENSE_END_USER
@SerializedName("licenseEndUser") public static final LegalConstraintsType LICENSE_END_USER
-
LICENSE_DISTRIBUTOR
@SerializedName("licenseDistributor") public static final LegalConstraintsType LICENSE_DISTRIBUTOR
-
PRIVATE
@SerializedName("private") public static final LegalConstraintsType PRIVATE
-
STATUTORY
@SerializedName("statutory") public static final LegalConstraintsType STATUTORY
-
CONFIDENTIAL
@SerializedName("confidential") public static final LegalConstraintsType CONFIDENTIAL
-
SENSITIVE_BUT_UNCLASSIFIED
@SerializedName("sensitiveButUnclassified") public static final LegalConstraintsType SENSITIVE_BUT_UNCLASSIFIED
-
IN_CONFIDENCE
@SerializedName("in-confidence") public static final LegalConstraintsType IN_CONFIDENCE
-
-
Method Detail
-
values
public static LegalConstraintsType[] 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 (LegalConstraintsType c : LegalConstraintsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LegalConstraintsType 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 namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<LegalConstraintsType>
-
fromValue
public static LegalConstraintsType fromValue(java.lang.String value)
-
-