Package org.apache.ignite.internal
Enum GridComponent.DiscoveryDataExchangeType
- java.lang.Object
-
- java.lang.Enum<GridComponent.DiscoveryDataExchangeType>
-
- org.apache.ignite.internal.GridComponent.DiscoveryDataExchangeType
-
- All Implemented Interfaces:
Serializable,Comparable<GridComponent.DiscoveryDataExchangeType>
- Enclosing interface:
- GridComponent
public static enum GridComponent.DiscoveryDataExchangeType extends Enum<GridComponent.DiscoveryDataExchangeType>
Unique component type for discovery data exchange.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH_PROCAuthentication processor.BINARY_PROCCACHE_CRD_PROCCACHE_PROCCLUSTER_PROCCONTINUOUS_PROCDISCOVERY_PROCENCRYPTION_MGREncryption manager.MARSHALLER_PROCMETA_STORAGEDistributed MetaStorage processor.PERFORMANCE_STAT_PROCPerformance statistics processor.PLUGINQUERY_PROCQuery processor.SERVICE_PROCService processor.STATE_PROCState process.
-
Field Summary
Fields Modifier and Type Field Description static GridComponent.DiscoveryDataExchangeType[]VALUESCached values array.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GridComponent.DiscoveryDataExchangeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GridComponent.DiscoveryDataExchangeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTINUOUS_PROC
public static final GridComponent.DiscoveryDataExchangeType CONTINUOUS_PROC
-
CACHE_PROC
public static final GridComponent.DiscoveryDataExchangeType CACHE_PROC
-
STATE_PROC
public static final GridComponent.DiscoveryDataExchangeType STATE_PROC
State process.
-
PLUGIN
public static final GridComponent.DiscoveryDataExchangeType PLUGIN
-
CLUSTER_PROC
public static final GridComponent.DiscoveryDataExchangeType CLUSTER_PROC
-
DISCOVERY_PROC
public static final GridComponent.DiscoveryDataExchangeType DISCOVERY_PROC
-
MARSHALLER_PROC
public static final GridComponent.DiscoveryDataExchangeType MARSHALLER_PROC
-
BINARY_PROC
public static final GridComponent.DiscoveryDataExchangeType BINARY_PROC
-
QUERY_PROC
public static final GridComponent.DiscoveryDataExchangeType QUERY_PROC
Query processor.
-
AUTH_PROC
public static final GridComponent.DiscoveryDataExchangeType AUTH_PROC
Authentication processor.
-
CACHE_CRD_PROC
public static final GridComponent.DiscoveryDataExchangeType CACHE_CRD_PROC
-
ENCRYPTION_MGR
public static final GridComponent.DiscoveryDataExchangeType ENCRYPTION_MGR
Encryption manager.
-
SERVICE_PROC
public static final GridComponent.DiscoveryDataExchangeType SERVICE_PROC
Service processor.
-
META_STORAGE
public static final GridComponent.DiscoveryDataExchangeType META_STORAGE
Distributed MetaStorage processor.
-
PERFORMANCE_STAT_PROC
public static final GridComponent.DiscoveryDataExchangeType PERFORMANCE_STAT_PROC
Performance statistics processor.
-
-
Field Detail
-
VALUES
public static final GridComponent.DiscoveryDataExchangeType[] VALUES
Cached values array.
-
-
Method Detail
-
values
public static GridComponent.DiscoveryDataExchangeType[] 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 (GridComponent.DiscoveryDataExchangeType c : GridComponent.DiscoveryDataExchangeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GridComponent.DiscoveryDataExchangeType 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
-
-