All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.postgresql.jdbc.EscapeSyntaxCallMode Maven / Gradle / Ivy

There is a newer version: 9.2-1003-jdbc4_1
Show newest version
/*
 * Copyright (c) 2019, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package org.postgresql.jdbc;

/**
 * Specifies whether a SELECT/CALL statement is used for the underlying SQL for JDBC escape call syntax: 'select' means to
 * always use SELECT, 'callIfNoReturn' means to use CALL if there is no return parameter (otherwise use SELECT), and 'call' means
 * to always use CALL.
 *
 * @see org.postgresql.PGProperty#ESCAPE_SYNTAX_CALL_MODE
 */
public enum EscapeSyntaxCallMode {
  SELECT("select"),
  CALL_IF_NO_RETURN("callIfNoReturn"),
  CALL("call");

  private final String value;

  EscapeSyntaxCallMode(String value) {
    this.value = value;
  }

  public static EscapeSyntaxCallMode of(String mode) {
    for (EscapeSyntaxCallMode escapeSyntaxCallMode : values()) {
      if (escapeSyntaxCallMode.value.equals(mode)) {
        return escapeSyntaxCallMode;
      }
    }
    return SELECT;
  }

  public String value() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy