public enum ResultTypeEnum extends Enum<ResultTypeEnum>
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
String |
getValue() |
void |
setCode(String code) |
void |
setValue(String value) |
static ResultTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultTypeEnum MERGE
public static final ResultTypeEnum ALONE
public static ResultTypeEnum[] values()
for (ResultTypeEnum c : ResultTypeEnum.values()) System.out.println(c);
public static ResultTypeEnum 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 String getCode()
public void setCode(String code)
public String getValue()
public void setValue(String value)
Copyright © 2023. All rights reserved.