Package oracle.as.scheduler
Class JobSetStepProperties
java.lang.Object
oracle.as.scheduler.JobSetStepProperties
Container for the properties for a JobSetStep.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new instance.Constructs an instance with the same properties as the given object. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a step property to this object.void
clear()
Removes all step properties from this object.boolean
Checks if this object contains a property with the specified name.boolean
Checks if the object is equal to this JobSetStepProperties.getNames()
Returns a collection of the property names in this object.Gets the value of the specifed property.void
Removes a property from this object.
-
Constructor Details
-
JobSetStepProperties
public JobSetStepProperties()Constructs a new instance. -
JobSetStepProperties
Constructs an instance with the same properties as the given object.- Parameters:
source
- the JobSet step properties to be duplicated in this object. The source may not be null.
-
-
Method Details
-
add
Adds a step property to this object. If a property by the given name already exists, its value is replaced with new value.- Parameters:
name
- the name of the JobSetStepProperty.value
- the value of the property.null
in not allowed.
-
contains
Checks if this object contains a property with the specified name.- Parameters:
name
- the name of the property to check.- Returns:
true
if the property exists,false
otherwise.
-
getValue
Gets the value of the specifed property.- Parameters:
name
- the name of the step property whose value is to be returned.- Returns:
- the value of the property, or
null
if the property is not defined in this object.
-
getNames
Returns a collection of the property names in this object.- Returns:
- a collection of the JobSetStep properties in this object.
-
remove
Removes a property from this object.- Parameters:
name
- the property to be removed.
-
clear
public void clear()Removes all step properties from this object. -
equals
Checks if the object is equal to this JobSetStepProperties.Equal means it contains exactly the same properties with the same values.
-