Package com.axway.apim.setup.lib
Enum APIManagerSetupExportParams.Type
- java.lang.Object
-
- java.lang.Enum<APIManagerSetupExportParams.Type>
-
- com.axway.apim.setup.lib.APIManagerSetupExportParams.Type
-
- All Implemented Interfaces:
Serializable,Comparable<APIManagerSetupExportParams.Type>
- Enclosing class:
- APIManagerSetupExportParams
public static enum APIManagerSetupExportParams.Type extends Enum<APIManagerSetupExportParams.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description alertsconfigcustomPropertiespoliciesremotehosts
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static APIManagerSetupExportParams.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static APIManagerSetupExportParams.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
config
public static final APIManagerSetupExportParams.Type config
-
alerts
public static final APIManagerSetupExportParams.Type alerts
-
remotehosts
public static final APIManagerSetupExportParams.Type remotehosts
-
policies
public static final APIManagerSetupExportParams.Type policies
-
customProperties
public static final APIManagerSetupExportParams.Type customProperties
-
-
Method Detail
-
values
public static APIManagerSetupExportParams.Type[] 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 (APIManagerSetupExportParams.Type c : APIManagerSetupExportParams.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static APIManagerSetupExportParams.Type 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
-
-