public static enum RailsManager.ORM extends Enum<RailsManager.ORM>
| Enum Constant and Description |
|---|
activerecord |
datamapper |
| Modifier and Type | Method and Description |
|---|---|
static RailsManager.ORM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RailsManager.ORM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RailsManager.ORM activerecord
public static final RailsManager.ORM datamapper
public static RailsManager.ORM[] values()
for (RailsManager.ORM c : RailsManager.ORM.values()) System.out.println(c);
public static RailsManager.ORM 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 © 2016. All Rights Reserved.