public static enum Database.CreateFlags extends Enum<Database.CreateFlags>
Enum Constant and Description |
---|
HIDE_FROM_VIEWS
creates a ghost document that does not show up in views/searches
|
Modifier and Type | Method and Description |
---|---|
static Database.CreateFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Database.CreateFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Database.CreateFlags HIDE_FROM_VIEWS
public static Database.CreateFlags[] values()
for (Database.CreateFlags c : Database.CreateFlags.values()) System.out.println(c);
public static Database.CreateFlags 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 © 2019–2021 HCL. All rights reserved.