Enum LegalConstraintsType

    • Enum Constant Detail

      • PATENT_PENDING

        @SerializedName("patentPending")
        public static final LegalConstraintsType PATENT_PENDING
      • INTELLECTUAL_PROPERTY_RIGHTS

        @SerializedName("intellectualPropertyRights")
        public static final LegalConstraintsType INTELLECTUAL_PROPERTY_RIGHTS
      • 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
      • 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 name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public java.lang.String getValue()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<LegalConstraintsType>