public enum TrieEventEnum extends java.lang.Enum<TrieEventEnum>
| Enum Constant and Description |
|---|
INSERT
Shenyu Trie insert event.
|
REMOVE
Shenyu Trie remove event.
|
UPDATE
Shenyu Trie update event.
|
| Modifier and Type | Method and Description |
|---|---|
static TrieEventEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TrieEventEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrieEventEnum INSERT
public static final TrieEventEnum UPDATE
public static final TrieEventEnum REMOVE
public static TrieEventEnum[] values()
for (TrieEventEnum c : TrieEventEnum.values()) System.out.println(c);
public static TrieEventEnum 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 nullCopyright © 2024 The Apache Software Foundation. All rights reserved.