public enum HandshakeState extends Enum<HandshakeState>
| 枚举常量和说明 |
|---|
MATCHED
Handshake matched this Draft successfully
|
NOT_MATCHED
Handshake is does not match this Draft
|
public static final HandshakeState MATCHED
public static final HandshakeState NOT_MATCHED
public static HandshakeState[] values()
for (HandshakeState c : HandshakeState.values()) System.out.println(c);
public static HandshakeState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All rights reserved.