public enum KeyType extends Enum<KeyType>
| Enum Constant and Description |
|---|
external
Tags a property as a key used as an external identifier for a Class.
|
internal
Tags a property as a key used as an internal identifier for a Class
|
primary
A key used as a primary identifier for the UML Class of the UML Property tagged with the SDOKey stereotype.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyType primary
public static final KeyType internal
public static final KeyType external
public static KeyType[] values()
for (KeyType c : KeyType.values()) System.out.println(c);
public static KeyType 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 nullCopyright © 2017. All rights reserved.