Class DataProperty
java.lang.Object
com.sas.lsaf.workflow.processflow.DataProperty
- All Implemented Interfaces:
Serializable
The class that represents a form property in a process flow that is specified with the start event in a process flow
definition.
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionDataProperty(String id, String name, DataProperty.Type type, Serializable value) It is not intended or recommended that the consumer of the API construct these objects.DataProperty(String id, String name, DataProperty.Type type, Serializable value, Map<String, String> values, String datePattern) It is not intended or recommended that the consumer of the API construct these objects. -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.Gets the date pattern of the data property as defined in the process flow definition.getId()Gets the identifier of the data property as defined in the process flow definition.getName()Gets the name of the data property as defined in the process flow definition.getType()Gets the type of the data property as defined in the process flow definition.getValue()Gets the value of the data property.Gets the values of the data property as defined in the process flow definition.inthashCode()Returns a hash code value for the object.voidsetValue(Serializable value) Sets the value of the data property.toString()
-
Constructor Details
-
DataProperty
public DataProperty(String id, String name, DataProperty.Type type, Serializable value, Map<String, String> values, String datePattern) It is not intended or recommended that the consumer of the API construct these objects. They should only retrievedDataPropertyobjects from the API.- Parameters:
id- The identifier of the data property.name- The name of the data property.type- The type of the data property.value- The value of the data property.values- The values of the data property. This is returned only from ENUM property types because it is the only type that has multiple values for selection.datePattern- The date pattern of the data property.
-
DataProperty
It is not intended or recommended that the consumer of the API construct these objects. They should only retrievedDataPropertyobjects from the API.- Parameters:
id- The identifier of the data property.name- The name of the data property.type- The type of the data property.value- The value of the data property.
-
-
Method Details
-
getDatePattern
Gets the date pattern of the data property as defined in the process flow definition.- Returns:
- The date pattern of the data property.
-
getValues
Gets the values of the data property as defined in the process flow definition.- Returns:
- The values of the data property.
-
getId
Gets the identifier of the data property as defined in the process flow definition.- Returns:
- The identifier of the data property.
-
getName
Gets the name of the data property as defined in the process flow definition.- Returns:
- The name of the data property.
-
getValue
Gets the value of the data property.- Returns:
- The value of the data property.
-
setValue
Sets the value of the data property.- Parameters:
value- The value of the data property.
-
getType
Gets the type of the data property as defined in the process flow definition.- Returns:
- The type of the data property.
-
hashCode
public int hashCode()Returns a hash code value for the object. -
equals
Indicates whether some other object is "equal to" this one. -
toString
-