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