Package org.apache.pinot.common.helix
Enum ExtraInstanceConfig.PinotInstanceConfigProperty
- java.lang.Object
-
- java.lang.Enum<ExtraInstanceConfig.PinotInstanceConfigProperty>
-
- org.apache.pinot.common.helix.ExtraInstanceConfig.PinotInstanceConfigProperty
-
- All Implemented Interfaces:
Serializable,Comparable<ExtraInstanceConfig.PinotInstanceConfigProperty>
- Enclosing class:
- ExtraInstanceConfig
public static enum ExtraInstanceConfig.PinotInstanceConfigProperty extends Enum<ExtraInstanceConfig.PinotInstanceConfigProperty>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PINOT_TLS_PORT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExtraInstanceConfig.PinotInstanceConfigPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static ExtraInstanceConfig.PinotInstanceConfigProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PINOT_TLS_PORT
public static final ExtraInstanceConfig.PinotInstanceConfigProperty PINOT_TLS_PORT
-
-
Method Detail
-
values
public static ExtraInstanceConfig.PinotInstanceConfigProperty[] 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 (ExtraInstanceConfig.PinotInstanceConfigProperty c : ExtraInstanceConfig.PinotInstanceConfigProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExtraInstanceConfig.PinotInstanceConfigProperty 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
-
-