Enum Class PipelineType

java.lang.Object
java.lang.Enum<PipelineType>
com.caplin.jtm.pipeline.PipelineType
All Implemented Interfaces:
Serializable, Comparable<PipelineType>, java.lang.constant.Constable

public enum PipelineType extends Enum<PipelineType>
Enumeration defining valid types for methods that can be registered for availability in pipeline modules
  • Enum Constant Details

    • INTEGER

      public static final PipelineType INTEGER
      Represents int
    • STRING

      public static final PipelineType STRING
      Represents String
    • FLOAT

      public static final PipelineType FLOAT
      Represents double
    • DSDATA

      public static final PipelineType DSDATA
      Represents TransformerData
  • Method Details

    • values

      public static PipelineType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PipelineType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getNativeType

      public int getNativeType()
      Get the index of the type in the native pipeline type enumeration
      Returns:
      the type index used in the pipeline implementation
    • getClazz

      public Class<?> getClazz()
      Get the class representing this pipeline type
      Returns:
      class representing the pipeline type
    • findType

      public static PipelineType findType(Class clazz)