Enum AttributeTypeModel

    • Field Detail

      • attributeType

        private org.deidentifier.arx.AttributeType attributeType
    • Constructor Detail

      • AttributeTypeModel

        private AttributeTypeModel​(org.deidentifier.arx.AttributeType attributeType)
        Setter method for the attribute type
        Parameters:
        attributeType - ARX object of AttributeType that sets attribute type
    • Method Detail

      • values

        public static AttributeTypeModel[] 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 (AttributeTypeModel c : AttributeTypeModel.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AttributeTypeModel valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getName

        public String getName()
        Getter method for the attribute type name
        Returns:
        String containing the name of the attribute type
      • getAttributeType

        public org.deidentifier.arx.AttributeType getAttributeType()
        Getter method for the ARX object of AttributeType
        Returns:
        ARX object of AttributeType containing the type of attribute.