Package com.hazelcast.config
Enum InstanceTrackingConfig.InstanceProductName
- java.lang.Object
-
- java.lang.Enum<InstanceTrackingConfig.InstanceProductName>
-
- com.hazelcast.config.InstanceTrackingConfig.InstanceProductName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InstanceTrackingConfig.InstanceProductName>
- Enclosing class:
- InstanceTrackingConfig
public static enum InstanceTrackingConfig.InstanceProductName extends java.lang.Enum<InstanceTrackingConfig.InstanceProductName>
Product name for the Hazelcast instance
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HAZELCAST
Hazelcast open-sourceHAZELCAST_CLIENT
Hazelcast java open-source clientHAZELCAST_CLIENT_EE
Hazelcast java enterprise clientHAZELCAST_EE
Hazelcast EnterpriseHAZELCAST_JET
Hazelcast Jet open-sourceHAZELCAST_JET_EE
Hazelcast Jet enterprise
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getProductName()
Returns the string representation of the instance product namestatic InstanceTrackingConfig.InstanceProductName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InstanceTrackingConfig.InstanceProductName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HAZELCAST
public static final InstanceTrackingConfig.InstanceProductName HAZELCAST
Hazelcast open-source
-
HAZELCAST_EE
public static final InstanceTrackingConfig.InstanceProductName HAZELCAST_EE
Hazelcast Enterprise
-
HAZELCAST_CLIENT
public static final InstanceTrackingConfig.InstanceProductName HAZELCAST_CLIENT
Hazelcast java open-source client
-
HAZELCAST_CLIENT_EE
public static final InstanceTrackingConfig.InstanceProductName HAZELCAST_CLIENT_EE
Hazelcast java enterprise client
-
HAZELCAST_JET
public static final InstanceTrackingConfig.InstanceProductName HAZELCAST_JET
Hazelcast Jet open-source
-
HAZELCAST_JET_EE
public static final InstanceTrackingConfig.InstanceProductName HAZELCAST_JET_EE
Hazelcast Jet enterprise
-
-
Method Detail
-
values
public static InstanceTrackingConfig.InstanceProductName[] 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 (InstanceTrackingConfig.InstanceProductName c : InstanceTrackingConfig.InstanceProductName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstanceTrackingConfig.InstanceProductName 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
-
getProductName
public java.lang.String getProductName()
Returns the string representation of the instance product name
-
-