Package io.kestra.plugin.jdbc.postgresql
Enum PostgresConnectionInterface.SslMode
- java.lang.Object
-
- java.lang.Enum<PostgresConnectionInterface.SslMode>
-
- io.kestra.plugin.jdbc.postgresql.PostgresConnectionInterface.SslMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PostgresConnectionInterface.SslMode>
- Enclosing interface:
- PostgresConnectionInterface
public static enum PostgresConnectionInterface.SslMode extends java.lang.Enum<PostgresConnectionInterface.SslMode>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PostgresConnectionInterface.SslModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PostgresConnectionInterface.SslMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLE
public static final PostgresConnectionInterface.SslMode DISABLE
-
ALLOW
public static final PostgresConnectionInterface.SslMode ALLOW
-
PREFER
public static final PostgresConnectionInterface.SslMode PREFER
-
REQUIRE
public static final PostgresConnectionInterface.SslMode REQUIRE
-
VERIFY_CA
public static final PostgresConnectionInterface.SslMode VERIFY_CA
-
VERIFY_FULL
public static final PostgresConnectionInterface.SslMode VERIFY_FULL
-
-
Method Detail
-
values
public static PostgresConnectionInterface.SslMode[] 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 (PostgresConnectionInterface.SslMode c : PostgresConnectionInterface.SslMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostgresConnectionInterface.SslMode valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-