|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Binder.CollectionStrategy>
org.nuiton.util.beans.Binder.CollectionStrategy
public static enum Binder.CollectionStrategy
Types of loading of collections.
| Enum Constant Summary | |
|---|---|
copy
To just copy the reference of the collection. |
|
duplicate
To duplicate the collection |
|
| Method Summary | |
|---|---|
abstract Object |
copy(Object readValue)
Copy a given collection. |
static Binder.CollectionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Binder.CollectionStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Binder.CollectionStrategy copy
public static final Binder.CollectionStrategy duplicate
| Method Detail |
|---|
public static Binder.CollectionStrategy[] values()
for (Binder.CollectionStrategy c : Binder.CollectionStrategy.values()) System.out.println(c);
public static Binder.CollectionStrategy valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic abstract Object copy(Object readValue)
readValue - the collection value to copy
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||