Package ch.ivyteam.ivy.workflow
Class PropertyOrder<T extends IProperty>
java.lang.Object
ch.ivyteam.ivy.workflow.PropertyOrder<T>
- Type Parameters:
T- the type of the property to use
Deprecated.
Defines how to order a workflow object after a certain property
- Since:
- 19.07.2007
- API:
- This is a public API.
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyOrder(T property) Deprecated.ConstructorPropertyOrder(T property, OrderDirection orderDirection) Deprecated.Constructor -
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends IProperty>
List<PropertyOrder<T>> create(T property) Deprecated.Creates a PropertyOrder list with one propertystatic <T extends IProperty>
List<PropertyOrder<T>> create(T... properties) Deprecated.Creates a PropertyOrder liststatic <T extends IProperty>
List<PropertyOrder<T>> create(T property, OrderDirection orderDirection) Deprecated.Creates a PropertyOrder list with one propertystatic <T extends IProperty>
List<PropertyOrder<T>> create(T property1, OrderDirection orderDirection1, T property2, OrderDirection orderDirection2) Deprecated.Creates a PropertyOrder liststatic <T extends IProperty>
List<PropertyOrder<T>> create(T property1, OrderDirection orderDirection1, T property2, OrderDirection orderDirection2, T property3, OrderDirection orderDirection3) Deprecated.Creates a PropertyOrder listDeprecated.Gets the order directionDeprecated.Gets the property
-
Constructor Details
-
PropertyOrder
Deprecated.Constructor- Parameters:
property- the property to order after- API:
- This public API is available in Java.
-
PropertyOrder
Deprecated.Constructor- Parameters:
property- the property to order afterorderDirection- the order direction- API:
- This public API is available in Java.
-
-
Method Details
-
create
Deprecated.Creates a PropertyOrder list with one property- Type Parameters:
T- Type of the properties- Parameters:
property- Property- Returns:
- List of
PropertyOrder - API:
- This public API is available in Java.
-
create
public static <T extends IProperty> List<PropertyOrder<T>> create(T property, OrderDirection orderDirection) Deprecated.Creates a PropertyOrder list with one property- Type Parameters:
T- Type of the properties- Parameters:
property- PropertyorderDirection- The order diection- Returns:
- List of
PropertyOrder - API:
- This public API is available in Java.
-
create
Deprecated.Creates a PropertyOrder list- Type Parameters:
T- Type of the properties- Parameters:
properties- The properties- Returns:
- List of
PropertyOrder - API:
- This public API is available in Java.
-
create
public static <T extends IProperty> List<PropertyOrder<T>> create(T property1, OrderDirection orderDirection1, T property2, OrderDirection orderDirection2) Deprecated.Creates a PropertyOrder list- Type Parameters:
T- Type of the properties- Parameters:
property1- First propertyorderDirection1- Order direction forproperty1property2- Second propertyorderDirection2- Order direction forproperty2- Returns:
- List of
PropertyOrder - API:
- This public API is available in Java.
-
create
public static <T extends IProperty> List<PropertyOrder<T>> create(T property1, OrderDirection orderDirection1, T property2, OrderDirection orderDirection2, T property3, OrderDirection orderDirection3) Deprecated.Creates a PropertyOrder list- Type Parameters:
T- Type of the properties- Parameters:
property1- First propertyorderDirection1- Order direction forproperty1property2- Second propertyorderDirection2- Order direction forproperty2property3- Third propertyorderDirection3- Order direction forproperty3- Returns:
- List of
PropertyOrder - API:
- This public API is available in Java.
-
getProperty
Deprecated.Gets the property- Returns:
- the property
- API:
- This public API is available in Java.
-
getOrderDirection
Deprecated.Gets the order direction- Returns:
- the orderDirection
- API:
- This public API is available in Java.
-