Enum EnvFieldPaths

    • 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 name
        NullPointerException - if the argument is null