Enum SecurityConstraintsType
- java.lang.Object
-
- java.lang.Enum<SecurityConstraintsType>
-
- org.citygml4j.binding.cityjson.metadata.SecurityConstraintsType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SecurityConstraintsType>
public enum SecurityConstraintsType extends java.lang.Enum<SecurityConstraintsType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIDENTIAL
FOR_OFFICIAL_USE_ONLY
LIMITED_DISTRIBUTION
PROTECTED
RESTRICTED
SECRET
SENSITIVE_BUT_UNCLASSIFIED
TOP_SECRET
UNCLASSIFIED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SecurityConstraintsType
fromValue(java.lang.String value)
java.lang.String
getValue()
java.lang.String
toString()
static SecurityConstraintsType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SecurityConstraintsType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCLASSIFIED
@SerializedName("unclassified") public static final SecurityConstraintsType UNCLASSIFIED
-
RESTRICTED
@SerializedName("restricted") public static final SecurityConstraintsType RESTRICTED
-
CONFIDENTIAL
@SerializedName("confidential") public static final SecurityConstraintsType CONFIDENTIAL
-
SECRET
@SerializedName("secret") public static final SecurityConstraintsType SECRET
-
TOP_SECRET
@SerializedName("topSecret") public static final SecurityConstraintsType TOP_SECRET
-
SENSITIVE_BUT_UNCLASSIFIED
@SerializedName("sensitiveButUnclassified") public static final SecurityConstraintsType SENSITIVE_BUT_UNCLASSIFIED
-
FOR_OFFICIAL_USE_ONLY
@SerializedName("forOfficialUseOnly") public static final SecurityConstraintsType FOR_OFFICIAL_USE_ONLY
-
PROTECTED
@SerializedName("protected") public static final SecurityConstraintsType PROTECTED
-
LIMITED_DISTRIBUTION
@SerializedName("limitedDistribution") public static final SecurityConstraintsType LIMITED_DISTRIBUTION
-
-
Method Detail
-
values
public static SecurityConstraintsType[] 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 (SecurityConstraintsType c : SecurityConstraintsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityConstraintsType 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<SecurityConstraintsType>
-
fromValue
public static SecurityConstraintsType fromValue(java.lang.String value)
-
-