Interface GroupProperty
public interface GroupProperty
Represents a property that can be used for grouping.
-
Method Summary
-
Method Details
-
get
Object get()Returns the property. It contains one of the following types:-
MetaPropertyPathif the grouping column is based on an entity property. -
String(column key) if the grouping is based on grouping column not bound to an entity property.
- Returns:
- the property
-
-
is
Checks whether the given property value matches this group property's value.The method compares the provided
propertyvalue with the value obtained from theget()method.-
If the provided
propertyis aStringand group property is aMetaPropertyPath. It will compare the provided value with the string representation of the property path. -
For any other cases, the equality will be determined using
Objects.equals(Object, Object).
- Parameters:
property- the property to check- Returns:
trueif the property matches the current property value
-
If the provided
-