Package oracle.spatial.georaster.util
Enum ConnectionParameters.ConnectionType
- java.lang.Object
-
- java.lang.Enum<ConnectionParameters.ConnectionType>
-
- oracle.spatial.georaster.util.ConnectionParameters.ConnectionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConnectionParameters.ConnectionType>
- Enclosing class:
- ConnectionParameters
public static enum ConnectionParameters.ConnectionType extends java.lang.Enum<ConnectionParameters.ConnectionType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConnectionParameters.ConnectionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConnectionParameters.ConnectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC
public static final ConnectionParameters.ConnectionType BASIC
-
WALLET
public static final ConnectionParameters.ConnectionType WALLET
-
-
Method Detail
-
values
public static ConnectionParameters.ConnectionType[] 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 (ConnectionParameters.ConnectionType c : ConnectionParameters.ConnectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectionParameters.ConnectionType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-