Class AttributeSortingParams


  • public class AttributeSortingParams
    extends Object
    Represents the parameters used for sorting attributes.

    This class contains the attribute name and its corresponding data type, which are used to define sorting criteria for attributes in queries.

    Author:
    nikritikos
    • Constructor Detail

      • AttributeSortingParams

        public AttributeSortingParams()
    • Method Detail

      • getAttributeName

        public String getAttributeName()
        Retrieves the name of the attribute used for sorting.
        Returns:
        the attribute name as a String.
      • setAttributeName

        public void setAttributeName​(String attributeName)
        Sets the name of the attribute to be used for sorting.
        Parameters:
        attributeName - the name of the attribute to set.
      • getAttributeDataType

        public AttributeDataType getAttributeDataType()
        Retrieves the data type of the attribute used for sorting.
        Returns:
        the AttributeDataType of the attribute.
      • setAttributeDataType

        public void setAttributeDataType​(AttributeDataType attributeDataType)
        Sets the data type of the attribute to be used for sorting.
        Parameters:
        attributeDataType - the AttributeDataType to set.