Package microsoft.dynamics.crm.enums
Enum AttributeTypeCode
- java.lang.Object
-
- java.lang.Enum<AttributeTypeCode>
-
- microsoft.dynamics.crm.enums.AttributeTypeCode
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<AttributeTypeCode>
public enum AttributeTypeCode extends Enum<AttributeTypeCode> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIG_INTBOOLEANCALENDAR_RULESCUSTOMERDATE_TIMEDECIMALDOUBLEENTITY_NAMEINTEGERLOOKUPMANAGED_PROPERTYMEMOMONEYOWNERPARTY_LISTPICKLISTSTATESTATUSSTRINGUNIQUEIDENTIFIERVIRTUAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static AttributeTypeCodevalueOf(String name)Returns the enum constant of this type with the specified name.static AttributeTypeCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final AttributeTypeCode BOOLEAN
-
CUSTOMER
public static final AttributeTypeCode CUSTOMER
-
DATE_TIME
public static final AttributeTypeCode DATE_TIME
-
DECIMAL
public static final AttributeTypeCode DECIMAL
-
DOUBLE
public static final AttributeTypeCode DOUBLE
-
INTEGER
public static final AttributeTypeCode INTEGER
-
LOOKUP
public static final AttributeTypeCode LOOKUP
-
MEMO
public static final AttributeTypeCode MEMO
-
MONEY
public static final AttributeTypeCode MONEY
-
OWNER
public static final AttributeTypeCode OWNER
-
PARTY_LIST
public static final AttributeTypeCode PARTY_LIST
-
PICKLIST
public static final AttributeTypeCode PICKLIST
-
STATE
public static final AttributeTypeCode STATE
-
STATUS
public static final AttributeTypeCode STATUS
-
STRING
public static final AttributeTypeCode STRING
-
UNIQUEIDENTIFIER
public static final AttributeTypeCode UNIQUEIDENTIFIER
-
CALENDAR_RULES
public static final AttributeTypeCode CALENDAR_RULES
-
VIRTUAL
public static final AttributeTypeCode VIRTUAL
-
BIG_INT
public static final AttributeTypeCode BIG_INT
-
MANAGED_PROPERTY
public static final AttributeTypeCode MANAGED_PROPERTY
-
ENTITY_NAME
public static final AttributeTypeCode ENTITY_NAME
-
-
Method Detail
-
values
public static AttributeTypeCode[] 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 (AttributeTypeCode c : AttributeTypeCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeTypeCode 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
-
-