public enum TypeException extends java.lang.Enum<TypeException>
GENERAL
DATABASE
ENVIRONMENT
MAPPING
QUERYMANAGEMENT
Enum Constant and Description |
---|
DATABASE
L'excepció es produeix en la capa DataBase, és a dir
dins del paquet
com.uoc.myframeuoc.database . |
ENVIRONMENT
L'excepció es produeix en la capa Environment, és a dir,
dins del paquet
com.uoc.myframeuoc.environment . |
GENERAL
L'excepció és general.
|
MAPPING
L'excepció es produeix en la capa Mapping, és a dir,
dins del paquet
com.uoc.myframeuoc.mapping . |
QUERYMANAGEMENT
L'excepció es produeix en la capa QueryManagement, és a dir,
dins del paquet
com.uoc.myframeuoc.querymanagement . |
Modifier and Type | Method and Description |
---|---|
static TypeException |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeException[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeException GENERAL
public static final TypeException DATABASE
com.uoc.myframeuoc.database
.public static final TypeException ENVIRONMENT
com.uoc.myframeuoc.environment
.public static final TypeException MAPPING
com.uoc.myframeuoc.mapping
.public static final TypeException QUERYMANAGEMENT
com.uoc.myframeuoc.querymanagement
.public static TypeException[] values()
for (TypeException c : TypeException.values()) System.out.println(c);
public static TypeException valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null