public static enum ChangeStreamMutation.MutationType extends Enum<ChangeStreamMutation.MutationType>
| Enum Constant and Description |
|---|
GARBAGE_COLLECTION |
USER |
| Modifier and Type | Method and Description |
|---|---|
static ChangeStreamMutation.MutationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeStreamMutation.MutationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeStreamMutation.MutationType USER
public static final ChangeStreamMutation.MutationType GARBAGE_COLLECTION
public static ChangeStreamMutation.MutationType[] values()
for (ChangeStreamMutation.MutationType c : ChangeStreamMutation.MutationType.values()) System.out.println(c);
public static ChangeStreamMutation.MutationType 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 © 2023 Google LLC. All rights reserved.