public enum PostgreSQLCommandPacketType extends Enum<PostgreSQLCommandPacketType> implements CommandPacketType
| 限定符和类型 | 方法和说明 |
|---|---|
static PostgreSQLCommandPacketType |
valueOf(int value)
Value of integer.
|
static PostgreSQLCommandPacketType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static PostgreSQLCommandPacketType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final PostgreSQLCommandPacketType AUTHENTICATION_OK
public static final PostgreSQLCommandPacketType AUTHENTICATION_KERBEROS_V5
public static final PostgreSQLCommandPacketType AUTHENTICATION_CLEARTEXT_PASSWORD
public static final PostgreSQLCommandPacketType AUTHENTICATION_MD5_PASSWORD
public static final PostgreSQLCommandPacketType AUTHENTICATION_SCM_CREDENTIAL
public static final PostgreSQLCommandPacketType AUTHENTICATION_GSS
public static final PostgreSQLCommandPacketType AUTHENTICATION_SSPI
public static final PostgreSQLCommandPacketType AUTHENTICATION_GSS_CONTINUE
public static final PostgreSQLCommandPacketType AUTHENTICATION_SASL
public static final PostgreSQLCommandPacketType AUTHENTICATION_SASL_CONTINUE
public static final PostgreSQLCommandPacketType AUTHENTICATION_SASL_FINAL
public static final PostgreSQLCommandPacketType QUERY
public static final PostgreSQLCommandPacketType PARSE
public static final PostgreSQLCommandPacketType BIND
public static final PostgreSQLCommandPacketType DESCRIBE
public static final PostgreSQLCommandPacketType EXECUTE
public static final PostgreSQLCommandPacketType SYNC
public static final PostgreSQLCommandPacketType PARSE_COMPLETE
public static final PostgreSQLCommandPacketType BIND_COMPLETE
public static final PostgreSQLCommandPacketType ROW_DESCRIPTION
public static final PostgreSQLCommandPacketType DATA_ROW
public static final PostgreSQLCommandPacketType COMMAND_COMPLETE
public static final PostgreSQLCommandPacketType READY_FOR_QUERY
public static final PostgreSQLCommandPacketType CLOSE
public static final PostgreSQLCommandPacketType CLOSE_COMPLETE
public static final PostgreSQLCommandPacketType BACKEND_KEY_DATA
public static final PostgreSQLCommandPacketType COPY_DATA
public static final PostgreSQLCommandPacketType COPY_DONE
public static final PostgreSQLCommandPacketType COPY_FAIL
public static final PostgreSQLCommandPacketType COPY_IN_RESPONSE
public static final PostgreSQLCommandPacketType COPY_OUT_RESPONSE
public static final PostgreSQLCommandPacketType COPY_BOTH_RESPONSE
public static final PostgreSQLCommandPacketType EMPTY_QUERY_RESPONSE
public static final PostgreSQLCommandPacketType ERROR_RESPONSE
public static final PostgreSQLCommandPacketType FLUSH
public static final PostgreSQLCommandPacketType FUNCTION_CALL
public static final PostgreSQLCommandPacketType FUNCTION_CALL_RESPONSE
public static final PostgreSQLCommandPacketType GSS_RESPONSE
public static final PostgreSQLCommandPacketType NEGOTIATE_PROTOCOL_VERSION
public static final PostgreSQLCommandPacketType NO_DATA
public static final PostgreSQLCommandPacketType NOTICE_RESPONSE
public static final PostgreSQLCommandPacketType NOTIFICATION_RESPONSE
public static final PostgreSQLCommandPacketType PARAMETER_DESCRIPTION
public static final PostgreSQLCommandPacketType PARAMETER_STATUS
public static final PostgreSQLCommandPacketType PASSWORD_MESSAGE
public static final PostgreSQLCommandPacketType PORTAL_SUSPENDED
public static final PostgreSQLCommandPacketType SASL_INITIAL_RESPONSE
public static final PostgreSQLCommandPacketType SASL_RESPONSE
public static final PostgreSQLCommandPacketType TERMINATE
public static PostgreSQLCommandPacketType[] values()
for (PostgreSQLCommandPacketType c : PostgreSQLCommandPacketType.values()) System.out.println(c);
public static PostgreSQLCommandPacketType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static PostgreSQLCommandPacketType valueOf(int value)
value - integer valueCopyright © 2019 The Apache Software Foundation. All rights reserved.