public enum ForMode extends Enum<ForMode>
Enum Constant and Description |
---|
KEY_SHARE |
NO_KEY_UPDATE |
SHARE |
UPDATE |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static ForMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForMode UPDATE
public static final ForMode SHARE
public static final ForMode NO_KEY_UPDATE
public static final ForMode KEY_SHARE
public static ForMode[] values()
for (ForMode c : ForMode.values()) System.out.println(c);
public static ForMode 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 getValue()
Copyright © 2004–2024 JSQLParser. All rights reserved.