public enum DynamicChildStrategy extends java.lang.Enum<DynamicChildStrategy>
| Enum Constant and Description |
|---|
ALWAYS_DYNAMIC
Always save as dynamic member, fail if buckets are exhausted or if parent is not enabled for dynamic children.
|
ALWAYS_DYNAMIC_IF_ENABLED
Same as ALWAYS_DYNAMIC if parent is dynamic else same as NEVER_DYNAMIC.
|
DYNAMIC_IF_AVAILABLE
Save as dynamic if buckets are available, save as normal member once buckets exhaust.
|
NEVER_DYNAMIC
Always save as normal member.
|
| Modifier and Type | Method and Description |
|---|---|
static DynamicChildStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DynamicChildStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicChildStrategy ALWAYS_DYNAMIC
public static final DynamicChildStrategy ALWAYS_DYNAMIC_IF_ENABLED
public static final DynamicChildStrategy DYNAMIC_IF_AVAILABLE
public static final DynamicChildStrategy NEVER_DYNAMIC
public static DynamicChildStrategy 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 nullpublic static DynamicChildStrategy[] values()
for (DynamicChildStrategy c : DynamicChildStrategy.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.