public static enum RedactableArgument.ArgumentType extends Enum<RedactableArgument.ArgumentType>
Enum Constant and Description |
---|
META
Metadata is logical data needed by Couchbase to
store and process user data.
|
SYSTEM
System data is data from other parts of the system
Couchbase interacts with over the network.
|
USER
User data is data that is stored into Couchbase by
the application user account.
|
Modifier and Type | Method and Description |
---|---|
static RedactableArgument.ArgumentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedactableArgument.ArgumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedactableArgument.ArgumentType USER
public static final RedactableArgument.ArgumentType META
public static final RedactableArgument.ArgumentType SYSTEM
public static RedactableArgument.ArgumentType[] values()
for (RedactableArgument.ArgumentType c : RedactableArgument.ArgumentType.values()) System.out.println(c);
public static RedactableArgument.ArgumentType 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 © 2021 Couchbase, Inc.. All rights reserved.