public enum AutoSave extends Enum<AutoSave>
Enum Constant and Description |
---|
ALWAYS |
CONSERVATIVE |
NEVER |
Modifier and Type | Method and Description |
---|---|
static AutoSave |
of(String value) |
String |
value() |
static AutoSave |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoSave[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoSave NEVER
public static final AutoSave ALWAYS
public static final AutoSave CONSERVATIVE
public static AutoSave[] values()
for (AutoSave c : AutoSave.values()) System.out.println(c);
public static AutoSave 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 value()
Copyright © 1997-2020 PostgreSQL Global Development Group. All Rights Reserved.