public enum InterfaceMode extends Enum<InterfaceMode>
| Enum Constant and Description |
|---|
annotation |
api |
spring |
| Modifier and Type | Method and Description |
|---|---|
static InterfaceMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterfaceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterfaceMode spring
public static final InterfaceMode api
public static final InterfaceMode annotation
public static InterfaceMode[] values()
for (InterfaceMode c : InterfaceMode.values()) System.out.println(c);
public static InterfaceMode 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. All rights reserved.