Oracle JDBC API Reference
12c Release 1 ("12.1.0.2.0")
E17663-03

oracle.jdbc
Enum OracleTypeMetaData.ArrayStorage

java.lang.Object
  extended by java.lang.Enum<OracleTypeMetaData.ArrayStorage>
      extended by oracle.jdbc.OracleTypeMetaData.ArrayStorage
All Implemented Interfaces:
Serializable, Comparable<OracleTypeMetaData.ArrayStorage>
Enclosing interface:
OracleTypeMetaData

public static enum OracleTypeMetaData.ArrayStorage
extends Enum<OracleTypeMetaData.ArrayStorage>

Identifies


Enum Constant Summary
NESTED_TABLE
           
VARRAY
           
 
Method Summary
 int getCode()
           
static OracleTypeMetaData.ArrayStorage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OracleTypeMetaData.ArrayStorage[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
static OracleTypeMetaData.ArrayStorage withCode(int code)
           
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VARRAY

public static final OracleTypeMetaData.ArrayStorage VARRAY

NESTED_TABLE

public static final OracleTypeMetaData.ArrayStorage NESTED_TABLE
Method Detail

values

public static OracleTypeMetaData.ArrayStorage[] 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 (OracleTypeMetaData.ArrayStorage c : OracleTypeMetaData.ArrayStorage.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OracleTypeMetaData.ArrayStorage 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

withCode

public static OracleTypeMetaData.ArrayStorage withCode(int code)

getCode

public int getCode()

Oracle JDBC API Reference
12c Release 1 ("12.1.0.2.0")
E17663-03

Copyright © 2008, 2013, Oracle. All rights reserved.