Package com.exoscale.sdk.model
Enum JsonSchemaPg.LogLinePrefixEnum
- java.lang.Object
-
- java.lang.Enum<JsonSchemaPg.LogLinePrefixEnum>
-
- com.exoscale.sdk.model.JsonSchemaPg.LogLinePrefixEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<JsonSchemaPg.LogLinePrefixEnum>
- Enclosing class:
- JsonSchemaPg
public static enum JsonSchemaPg.LogLinePrefixEnum extends Enum<JsonSchemaPg.LogLinePrefixEnum>
Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _M_P_Q_USER_U_DB_D_APP_A_
_T_P_L_1_USER_U_DB_D_APP_A_CLIENT_H_
PID_P_USER_U_DB_D_APP_A_CLIENT_H_
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonSchemaPg.LogLinePrefixEnum
fromValue(String value)
String
getValue()
String
toString()
static JsonSchemaPg.LogLinePrefixEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonSchemaPg.LogLinePrefixEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PID_P_USER_U_DB_D_APP_A_CLIENT_H_
public static final JsonSchemaPg.LogLinePrefixEnum PID_P_USER_U_DB_D_APP_A_CLIENT_H_
-
_T_P_L_1_USER_U_DB_D_APP_A_CLIENT_H_
public static final JsonSchemaPg.LogLinePrefixEnum _T_P_L_1_USER_U_DB_D_APP_A_CLIENT_H_
-
_M_P_Q_USER_U_DB_D_APP_A_
public static final JsonSchemaPg.LogLinePrefixEnum _M_P_Q_USER_U_DB_D_APP_A_
-
-
Method Detail
-
values
public static JsonSchemaPg.LogLinePrefixEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JsonSchemaPg.LogLinePrefixEnum c : JsonSchemaPg.LogLinePrefixEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonSchemaPg.LogLinePrefixEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toString
in classEnum<JsonSchemaPg.LogLinePrefixEnum>
-
fromValue
public static JsonSchemaPg.LogLinePrefixEnum fromValue(String value)
-
-