Package microsoft.dynamics.crm.enums
Enum XrmAggregateType
- java.lang.Object
-
- java.lang.Enum<XrmAggregateType>
-
- microsoft.dynamics.crm.enums.XrmAggregateType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<XrmAggregateType>
public enum XrmAggregateType extends Enum<XrmAggregateType> implements com.github.davidmoten.odata.client.Enum
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static XrmAggregateTypevalueOf(String name)Returns the enum constant of this type with the specified name.static XrmAggregateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final XrmAggregateType NONE
-
COUNT
public static final XrmAggregateType COUNT
-
COUNT_COLUMN
public static final XrmAggregateType COUNT_COLUMN
-
SUM
public static final XrmAggregateType SUM
-
AVG
public static final XrmAggregateType AVG
-
MIN
public static final XrmAggregateType MIN
-
MAX
public static final XrmAggregateType MAX
-
-
Method Detail
-
values
public static XrmAggregateType[] 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 (XrmAggregateType c : XrmAggregateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XrmAggregateType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-