public enum PrimaryKeyType extends Enum<PrimaryKeyType>
Modifier and Type | Method and Description |
---|---|
static PrimaryKeyType |
lookup(String primaryKeyType) |
static PrimaryKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimaryKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimaryKeyType TABLE
public static final PrimaryKeyType SEQUENCE
public static final PrimaryKeyType IDENTITY
public static final PrimaryKeyType AUTO
public static PrimaryKeyType[] values()
for (PrimaryKeyType c : PrimaryKeyType.values()) System.out.println(c);
public static PrimaryKeyType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static PrimaryKeyType lookup(String primaryKeyType)
Copyright (c) 2006-2024 North Concepts Inc. All Rights Reserved.