Class Attribute

  • All Implemented Interfaces:
    Comparable<Attribute>

    public class Attribute
    extends Object
    implements Comparable<Attribute>
    This class defines the value of an attribute associated to an extensible object. For each value, is possible to define the type and if it is mandatory or not.
    Since:
    4.5.1
    Author:
    Matteo Caruso - LogicalDOC
    • Constructor Detail

      • Attribute

        public Attribute()
    • Method Detail

      • getStringValue

        public String getStringValue()
      • setStringValue

        public void setStringValue​(String stringValue)
      • getIntValue

        public Long getIntValue()
      • setIntValue

        public void setIntValue​(Long intValue)
      • getDoubleValue

        public Double getDoubleValue()
      • setDoubleValue

        public void setDoubleValue​(Double doubleValue)
      • getDateValue

        public Date getDateValue()
      • setDateValue

        public void setDateValue​(Date dateValue)
      • getBooleanValue

        public Boolean getBooleanValue()
      • setBooleanValue

        public void setBooleanValue​(Boolean booleanValue)
      • getType

        public int getType()
      • setType

        public void setType​(int type)
      • getValue

        public Object getValue()
        Gets the attribute value. It can be as String, Long, Double or Date.
        Returns:
        The attribute value as Object.
      • setValue

        public void setValue​(Object value)
        Sets the attribute value. It can be as String, Long, Double or Date.
        Parameters:
        value - The attribute value.
      • getMandatory

        public int getMandatory()
        Whether an attribute value is mandatory or not.
        Returns:
        If 0, the attribute value is not mandatory; if 1, the attribute value is mandatory.
      • setMandatory

        public void setMandatory​(int mandatory)
      • getPosition

        public int getPosition()
        This is the position of the attribute into the attributes list
        Returns:
        the attribute's position
      • setPosition

        public void setPosition​(int position)
      • getLabel

        public String getLabel()
      • setLabel

        public void setLabel​(String label)
      • getEditor

        public int getEditor()
      • setEditor

        public void setEditor​(int editor)
      • getHidden

        public int getHidden()
      • setHidden

        public void setHidden​(int hidden)
      • getSetId

        public Long getSetId()
      • setSetId

        public void setSetId​(Long setId)
      • getMultiple

        public int getMultiple()
      • setMultiple

        public void setMultiple​(int multiple)
      • getParent

        public String getParent()
      • setParent

        public void setParent​(String parent)
      • getName

        public String getName()
      • setName

        public void setName​(String name)
      • getStringValues

        public String getStringValues()
      • setStringValues

        public void setStringValues​(String stringValues)
      • getValidation

        public String getValidation()
      • setValidation

        public void setValidation​(String validation)
      • getInitialization

        public String getInitialization()
      • setInitialization

        public void setInitialization​(String initialization)
      • getDependsOn

        public String getDependsOn()
      • setDependsOn

        public void setDependsOn​(String dependsOn)