public enum AdapterFactory extends Enum<AdapterFactory>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
TableAdapter |
getTableAdapter(Object tableObject)
Gets a table adapter facade object.
|
static AdapterFactory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdapterFactory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdapterFactory INSTANCE
public static AdapterFactory[] values()
for (AdapterFactory c : AdapterFactory.values()) System.out.println(c);
public static AdapterFactory 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 TableAdapter getTableAdapter(Object tableObject)
tableObject - the table object for which we want an adapterCopyright © 2019. All rights reserved.