Class JobSetStepProperty

java.lang.Object
oracle.as.scheduler.JobSetStepProperty

public class JobSetStepProperty extends Object
Defines the JobSet step properties.
  • Field Details

  • Constructor Details

    • JobSetStepProperty

      public JobSetStepProperty()
  • Method Details

    • getNames

      public static Set<String> getNames()
      Returns the names of the step properties.
      Returns:
      Set of the names of all step properties.
    • isStepProp

      public static boolean isStepProp(String name)
      Determines if the given name is a JobSetStepProperty.
      Returns:
      true if the name is a valid property name; else false.
    • getStepPropInfo

      public static ParameterInfo getStepPropInfo(String name)
      Returns the detailed information for the step property identified by the given name.
      Returns:
      the information about the property. This will be null if no such step property exists.
    • getTypedObject

      public static Object getTypedObject(String propName, String val) throws ValidationException
      Returns the given value converted into the appropriate type for the given property name.
      Parameters:
      propName - name of the property.
      val - the value to convert into the correct type for the property.
      Returns:
      an Object that has the correct type for the given property, or null if the property name is not a valid JobSetStepProperty name.
      Throws:
      ValidationException - if val has an unsupported datype or a conversion error occurs.