public static enum ObjectUtils.CloneMode extends Enum<ObjectUtils.CloneMode>
CloneSupport 类| Enum Constant and Description |
|---|
ALWAYS_CLONE
总是克隆
|
CLONE_ONLY_DATA_NOT_EMPTY
数据不为空时才克隆
|
NOT_CLONE
不克隆
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectUtils.CloneMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectUtils.CloneMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectUtils.CloneMode NOT_CLONE
public static final ObjectUtils.CloneMode CLONE_ONLY_DATA_NOT_EMPTY
public static final ObjectUtils.CloneMode ALWAYS_CLONE
public static ObjectUtils.CloneMode[] values()
for (ObjectUtils.CloneMode c : ObjectUtils.CloneMode.values()) System.out.println(c);
public static ObjectUtils.CloneMode 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 © 2021–2022 EasyJ????. All rights reserved.