Class AbstractPolicyFilter

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected int order  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int compareTo​(java.lang.Object obj)
      Compare this object with the specified object for order.
      boolean equals​(java.lang.Object obj)
      Indicates wheter some other object is "equal to" this one.
      int getOrder()
      Returns object orders value.
      void setOrder​(int order)
      Sets the component order
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • order

        protected int order
    • Constructor Detail

      • AbstractPolicyFilter

        public AbstractPolicyFilter()
    • Method Detail

      • getOrder

        public final int getOrder()
        Returns object orders value.
        Returns:
        int object orders value.
      • setOrder

        public final void setOrder​(int order)
        Sets the component order
        Parameters:
        order -
      • compareTo

        public final int compareTo​(java.lang.Object obj)
        Compare this object with the specified object for order.
        Specified by:
        compareTo in interface java.lang.Comparable
        Parameters:
        obj - the Object to be compared.
        See Also:
        Comparable.compareTo(java.lang.Object)
      • equals

        public final boolean equals​(java.lang.Object obj)
        Indicates wheter some other object is "equal to" this one. The comparison is performed with compareTo() method.
        Overrides:
        equals in class java.lang.Object
        Parameters:
        obj - the Object to be compared.