Enum MessageCollectionItemType
- java.lang.Object
- 
- java.lang.Enum<MessageCollectionItemType>
- 
- org.apache.ignite.plugin.extensions.communication.MessageCollectionItemType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<MessageCollectionItemType>
 
 public enum MessageCollectionItemType extends Enum<MessageCollectionItemType> Enum representing possible types of collection items.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AFFINITY_TOPOLOGY_VERSIONTopology version.BIT_SETBit set.BOOLEANBoolean.BOOLEAN_ARRBoolean array.BYTEByte.BYTE_ARRByte array.CHARCharacter.CHAR_ARRCharacter array.DOUBLEDouble.DOUBLE_ARRDouble array.FLOATFloat.FLOAT_ARRFloat array.IGNITE_UUIDIgnite UUID.INTInteger.INT_ARRInteger array.LONGLong.LONG_ARRLong array.MSGMessage.SHORTShort.SHORT_ARRShort array.STRINGString.UUIDUUID.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable MessageCollectionItemTypefromOrdinal(int ord)Efficiently gets enumerated value from its ordinal.static MessageCollectionItemTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MessageCollectionItemType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
BYTEpublic static final MessageCollectionItemType BYTE Byte.
 - 
SHORTpublic static final MessageCollectionItemType SHORT Short.
 - 
INTpublic static final MessageCollectionItemType INT Integer.
 - 
LONGpublic static final MessageCollectionItemType LONG Long.
 - 
FLOATpublic static final MessageCollectionItemType FLOAT Float.
 - 
DOUBLEpublic static final MessageCollectionItemType DOUBLE Double.
 - 
CHARpublic static final MessageCollectionItemType CHAR Character.
 - 
BOOLEANpublic static final MessageCollectionItemType BOOLEAN Boolean.
 - 
BYTE_ARRpublic static final MessageCollectionItemType BYTE_ARR Byte array.
 - 
SHORT_ARRpublic static final MessageCollectionItemType SHORT_ARR Short array.
 - 
INT_ARRpublic static final MessageCollectionItemType INT_ARR Integer array.
 - 
LONG_ARRpublic static final MessageCollectionItemType LONG_ARR Long array.
 - 
FLOAT_ARRpublic static final MessageCollectionItemType FLOAT_ARR Float array.
 - 
DOUBLE_ARRpublic static final MessageCollectionItemType DOUBLE_ARR Double array.
 - 
CHAR_ARRpublic static final MessageCollectionItemType CHAR_ARR Character array.
 - 
BOOLEAN_ARRpublic static final MessageCollectionItemType BOOLEAN_ARR Boolean array.
 - 
STRINGpublic static final MessageCollectionItemType STRING String.
 - 
BIT_SETpublic static final MessageCollectionItemType BIT_SET Bit set.
 - 
UUIDpublic static final MessageCollectionItemType UUID UUID.
 - 
IGNITE_UUIDpublic static final MessageCollectionItemType IGNITE_UUID Ignite UUID.
 - 
MSGpublic static final MessageCollectionItemType MSG Message.
 - 
AFFINITY_TOPOLOGY_VERSIONpublic static final MessageCollectionItemType AFFINITY_TOPOLOGY_VERSION Topology version.
 
- 
 - 
Method Detail- 
valuespublic static MessageCollectionItemType[] 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 (MessageCollectionItemType c : MessageCollectionItemType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MessageCollectionItemType 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 name
- NullPointerException- if the argument is null
 
 - 
fromOrdinal@Nullable public static @Nullable MessageCollectionItemType fromOrdinal(int ord) Efficiently gets enumerated value from its ordinal.- Parameters:
- ord- Ordinal value.
- Returns:
- Enumerated value.
 
 
- 
 
-