Package org.cdk8s.plus24
Enum EnvFieldPaths
- java.lang.Object
-
- java.lang.Enum<EnvFieldPaths>
-
- org.cdk8s.plus24.EnvFieldPaths
-
- All Implemented Interfaces:
Serializable
,Comparable<EnvFieldPaths>
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-28T00:25:43.720Z") @Stability(Stable) public enum EnvFieldPaths extends Enum<EnvFieldPaths>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NODE_IP
The ipAddress of the node.NODE_NAME
The name of the node.POD_ANNOTATION
The annotations of the pod.POD_IP
The ipAddress of the pod.POD_IPS
The ipAddresess of the pod.POD_LABEL
The labels of the pod.POD_NAME
The name of the pod.POD_NAMESPACE
The namespace of the pod.POD_UID
The uid of the pod.SERVICE_ACCOUNT_NAME
The service account name of the pod.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EnvFieldPaths
valueOf(String name)
Returns the enum constant of this type with the specified name.static EnvFieldPaths[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POD_NAME
@Stability(Stable) public static final EnvFieldPaths POD_NAME
The name of the pod.
-
POD_NAMESPACE
@Stability(Stable) public static final EnvFieldPaths POD_NAMESPACE
The namespace of the pod.
-
POD_UID
@Stability(Stable) public static final EnvFieldPaths POD_UID
The uid of the pod.
-
POD_LABEL
@Stability(Stable) public static final EnvFieldPaths POD_LABEL
The labels of the pod.
-
POD_ANNOTATION
@Stability(Stable) public static final EnvFieldPaths POD_ANNOTATION
The annotations of the pod.
-
POD_IP
@Stability(Stable) public static final EnvFieldPaths POD_IP
The ipAddress of the pod.
-
SERVICE_ACCOUNT_NAME
@Stability(Stable) public static final EnvFieldPaths SERVICE_ACCOUNT_NAME
The service account name of the pod.
-
NODE_NAME
@Stability(Stable) public static final EnvFieldPaths NODE_NAME
The name of the node.
-
NODE_IP
@Stability(Stable) public static final EnvFieldPaths NODE_IP
The ipAddress of the node.
-
POD_IPS
@Stability(Stable) public static final EnvFieldPaths POD_IPS
The ipAddresess of the pod.
-
-
Method Detail
-
values
public static EnvFieldPaths[] 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 (EnvFieldPaths c : EnvFieldPaths.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnvFieldPaths 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
-
-