public static enum RaftServerProtocol.Op extends Enum<RaftServerProtocol.Op>
| 枚举常量和说明 |
|---|
APPEND_ENTRIES |
INSTALL_SNAPSHOT |
REQUEST_VOTE |
public static final RaftServerProtocol.Op REQUEST_VOTE
public static final RaftServerProtocol.Op APPEND_ENTRIES
public static final RaftServerProtocol.Op INSTALL_SNAPSHOT
public static RaftServerProtocol.Op[] values()
for (RaftServerProtocol.Op c : RaftServerProtocol.Op.values()) System.out.println(c);
public static RaftServerProtocol.Op valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2017–2025 The Apache Software Foundation. All rights reserved.