Enum GroupKey.Metadata
- java.lang.Object
-
- java.lang.Enum<GroupKey.Metadata>
-
- org.drools.model.functions.accumulate.GroupKey.Metadata
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GroupKey.Metadata>,DomainClassMetadata
- Enclosing class:
- GroupKey
public static enum GroupKey.Metadata extends java.lang.Enum<GroupKey.Metadata> implements DomainClassMetadata
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>getDomainClass()intgetPropertiesSize()intgetPropertyIndex(java.lang.String name)static GroupKey.MetadatavalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GroupKey.Metadata[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final GroupKey.Metadata INSTANCE
-
-
Method Detail
-
values
public static GroupKey.Metadata[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GroupKey.Metadata c : GroupKey.Metadata.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupKey.Metadata valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getDomainClass
public java.lang.Class<?> getDomainClass()
- Specified by:
getDomainClassin interfaceDomainClassMetadata
-
getPropertiesSize
public int getPropertiesSize()
- Specified by:
getPropertiesSizein interfaceDomainClassMetadata
-
getPropertyIndex
public int getPropertyIndex(java.lang.String name)
- Specified by:
getPropertyIndexin interfaceDomainClassMetadata
-
-