public static enum ModelBindings.ExclusiveMode extends java.lang.Enum<ModelBindings.ExclusiveMode>
Enum Constant and Description |
---|
EXCLUDE_OTHERS
Models which are not mentioned should be excluded from the module's
model repository.
|
INCLUDE_OTHERS
Models which are not mentioned should still be included in the
module's model repository.
|
Modifier and Type | Method and Description |
---|---|
static ModelBindings.ExclusiveMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelBindings.ExclusiveMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelBindings.ExclusiveMode INCLUDE_OTHERS
public static final ModelBindings.ExclusiveMode EXCLUDE_OTHERS
public static ModelBindings.ExclusiveMode[] values()
for (ModelBindings.ExclusiveMode c : ModelBindings.ExclusiveMode.values()) System.out.println(c);
public static ModelBindings.ExclusiveMode 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 null