org.adrabi.objectbrowser
Enum ObjInfo.$types
java.lang.Object
java.lang.Enum<ObjInfo.$types>
org.adrabi.objectbrowser.ObjInfo.$types
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ObjInfo.$types>
- Enclosing class:
- ObjInfo
static enum ObjInfo.$types
- extends java.lang.Enum<ObjInfo.$types>
- Version:
- 0.1
- Author:
- ADRABI Abderrahim
Method Summary |
static ObjInfo.$types |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ObjInfo.$types[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
COLUMN
public static final ObjInfo.$types COLUMN
COLUMNS
public static final ObjInfo.$types COLUMNS
COMMENT
public static final ObjInfo.$types COMMENT
DATABASE
public static final ObjInfo.$types DATABASE
EVENT
public static final ObjInfo.$types EVENT
EVENTS
public static final ObjInfo.$types EVENTS
FOREIGN_KEY
public static final ObjInfo.$types FOREIGN_KEY
FUNCTION
public static final ObjInfo.$types FUNCTION
FUNCTIONS
public static final ObjInfo.$types FUNCTIONS
PRRIMARY_KEY
public static final ObjInfo.$types PRRIMARY_KEY
PROCEDURE
public static final ObjInfo.$types PROCEDURE
PROCEDURES
public static final ObjInfo.$types PROCEDURES
TABLE
public static final ObjInfo.$types TABLE
TABLES
public static final ObjInfo.$types TABLES
TRIGGER
public static final ObjInfo.$types TRIGGER
TRIGGERS
public static final ObjInfo.$types TRIGGERS
VIEW
public static final ObjInfo.$types VIEW
VIEWS
public static final ObjInfo.$types VIEWS
values
public static final ObjInfo.$types[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ObjInfo.$types c : ObjInfo.$types.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ObjInfo.$types 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 name