Enum CloudScheme
- java.lang.Object
-
- java.lang.Enum<CloudScheme>
-
- io.gravitee.node.kubernetes.propertyresolver.CloudScheme
-
- All Implemented Interfaces:
Serializable,Comparable<CloudScheme>
public enum CloudScheme extends Enum<CloudScheme>
- Since:
- 3.9.11
- Author:
- Kamiel Ahmadpour (kamiel.ahmadpour at graviteesource.com), GraviteeSource Team
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KUBERNETES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()static CloudSchemevalueOf(String name)Returns the enum constant of this type with the specified name.static CloudScheme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KUBERNETES
public static final CloudScheme KUBERNETES
-
-
Method Detail
-
values
public static CloudScheme[] 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 (CloudScheme c : CloudScheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudScheme 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
-
value
public String value()
-
-