Enum Constant | Description |
---|---|
ALWAYS |
|
CONSERVATIVE |
|
NEVER |
Modifier and Type | Method | Description |
---|---|---|
static AutoSave |
of(java.lang.String value) |
|
java.lang.String |
value() |
|
static AutoSave |
valueOf(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static AutoSave of(java.lang.String value)
Copyright © 2019 PostgreSQL Global Development Group. All rights reserved.