public static enum EntityConnector.ConnectionType extends java.lang.Enum<EntityConnector.ConnectionType>
| Enum Constant | Description |
|---|---|
ManyToMany |
|
ManyToOne |
|
OneToMany |
|
OneToOne |
| Modifier and Type | Method | Description |
|---|---|---|
static EntityConnector.ConnectionType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EntityConnector.ConnectionType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityConnector.ConnectionType ManyToOne
public static final EntityConnector.ConnectionType ManyToMany
public static final EntityConnector.ConnectionType OneToMany
public static final EntityConnector.ConnectionType OneToOne
public static EntityConnector.ConnectionType[] values()
for (EntityConnector.ConnectionType c : EntityConnector.ConnectionType.values()) System.out.println(c);
public static EntityConnector.ConnectionType 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 nullCopyright © 2019 SMYLD. All rights reserved.