Enum PipelineMeta.PipelineType

    • Method Detail

      • values

        public static PipelineMeta.PipelineType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (PipelineMeta.PipelineType c : PipelineMeta.PipelineType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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

        public String getCode()
        Gets the code corresponding to the pipeline type.
        Returns:
        the code
      • getDescription

        public String getDescription()
        Gets the description of the pipeline type.
        Returns:
        the description
      • getPipelineTypeByCode

        public static PipelineMeta.PipelineType getPipelineTypeByCode​(String pipelineTypeCode)
        Gets the pipeline type by code.
        Parameters:
        pipelineTypeCode - the pipeline type code
        Returns:
        the pipeline type by code
      • getPipelineTypesDescriptions

        public static String[] getPipelineTypesDescriptions()
        Gets the pipeline types descriptions.
        Returns:
        the pipeline types descriptions