TableColumnOrderForCollectionTypeAbstract
Convenience implementation of TableColumnOrderService that ignores requests for the order of any types other than that #getCollectionType() type specified in the constructor .
API
TableColumnOrderForCollectionTypeAbstract.java
class TableColumnOrderForCollectionTypeAbstract<T> {
List<String> orderParented(Object parent, String collectionId, Class<?> elementType, List<String> associationIds) (1)
List<String> orderStandalone(Class<?> domainType, List<String> associationIds) (2)
}
1 | orderParented(Object, String, Class, List)
Ignores any request for collections not of the #getCollectionType() type specified in the constructor , otherwise delegates to #orderParented(Object, String, List) . |
2 | orderStandalone(Class, List)
Ignores any request for collections not of the #getCollectionType() type specified in the constructor , otherwise delegates to #orderStandalone(List) . |