Class CompactAction.CompactActionFactory

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      TransformAction create​(java.util.Properties properties)
      Creates a new instance of an action based on the properties.
      int getOrder()
      Returns the order of the transform action.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CompactActionFactory

        public CompactActionFactory()
    • Method Detail

      • getOrder

        public int getOrder()
        Description copied from interface: TransformActionFactory
        Returns the order of the transform action. Transform actions with a lower number will be executed before transform actions with a higher number. Behavior is undefined for actions with equal number.
        Specified by:
        getOrder in interface TransformActionFactory
        Returns:
        integer representing order number
      • create

        public TransformAction create​(java.util.Properties properties)
        Description copied from interface: TransformActionFactory
        Creates a new instance of an action based on the properties. Null should be returned when the particular action is not necessary.
        Specified by:
        create in interface TransformActionFactory
        Parameters:
        properties - the raw definition of the action
        Returns:
        a new instance of an action
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object