|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TipusClau>
com.smg.persistwork.model.annotations.TipusClau
public enum TipusClau
Enum per a diferenciar el tipus de clau primària.
Enum Constant Summary | |
---|---|
AUTO_INCREMENT
Es farà servir una seqüència definida de forma automàtica (mysql) o amb un seqüèncial (oracle) |
|
VALOR_ASSIGNAT
El valor ha de vindre assignat per programa. |
|
VALOR_MAX
S'assignarà el valor màxim + 1 del registre. |
Method Summary | |
---|---|
static TipusClau |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TipusClau[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TipusClau VALOR_MAX
public static final TipusClau AUTO_INCREMENT
public static final TipusClau VALOR_ASSIGNAT
Method Detail |
---|
public static TipusClau[] values()
for (TipusClau c : TipusClau.values()) System.out.println(c);
public static TipusClau 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |