Enum ResourceType

    • Enum Constant Detail

      • SEQUENCE_HEADER

        public static final ResourceType SEQUENCE_HEADER
      • SEQUENCE_BODY

        public static final ResourceType SEQUENCE_BODY
      • THREED_MODEL_HEADER

        public static final ResourceType THREED_MODEL_HEADER
      • TIMESERIES_HEADER

        public static final ResourceType TIMESERIES_HEADER
      • TIMESERIES_DATAPOINTS

        public static final ResourceType TIMESERIES_DATAPOINTS
      • RELATIONSHIP

        public static final ResourceType RELATIONSHIP
      • SECURITY_CATEGORY

        public static final ResourceType SECURITY_CATEGORY
      • EXTRACTION_PIPELINE

        public static final ResourceType EXTRACTION_PIPELINE
      • EXTRACTION_PIPELINE_RUN

        public static final ResourceType EXTRACTION_PIPELINE_RUN
      • THREED_MODEL

        public static final ResourceType THREED_MODEL
      • THREED_MODEL_REVISION

        public static final ResourceType THREED_MODEL_REVISION
      • THREED_NODE_FILTER

        public static final ResourceType THREED_NODE_FILTER
      • THREED_ANCESTOR_NODE

        public static final ResourceType THREED_ANCESTOR_NODE
      • THREED_ASSET_MAPPINGS

        public static final ResourceType THREED_ASSET_MAPPINGS
      • TRANSFORMATIONS

        public static final ResourceType TRANSFORMATIONS
      • TRANSFORMATIONS_JOBS

        public static final ResourceType TRANSFORMATIONS_JOBS
      • TRANSFORMATIONS_JOB_METRICS

        public static final ResourceType TRANSFORMATIONS_JOB_METRICS
      • TRANSFORMATIONS_SCHEDULES

        public static final ResourceType TRANSFORMATIONS_SCHEDULES
    • Method Detail

      • values

        public static ResourceType[] 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 (ResourceType c : ResourceType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ResourceType 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