Uses of Class
adql.query.IdentifierField
-
Packages that use IdentifierField Package Description adql.query adql.query.from adql.query.operand adql.translator -
-
Uses of IdentifierField in adql.query
Methods in adql.query that return IdentifierField Modifier and Type Method Description static IdentifierField
IdentifierField. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdentifierField[]
IdentifierField. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of IdentifierField in adql.query.from
Methods in adql.query.from with parameters of type IdentifierField Modifier and Type Method Description boolean
ADQLTable. isCaseSensitive(IdentifierField field)
Indicates whether the specified field (catalog, schema or table) is case sensitive or not.protected java.lang.String
ADQLTable. normalizeName(java.lang.String name, IdentifierField field)
Lets normalizing any catalog/schema/table name or alias.void
ADQLTable. setCaseSensitive(IdentifierField field, boolean sensitive)
Sets the case sensitivity of the specified field (catalog, schema or table). -
Uses of IdentifierField in adql.query.operand
Methods in adql.query.operand with parameters of type IdentifierField Modifier and Type Method Description boolean
ADQLColumn. isCaseSensitive(IdentifierField field)
Indicates whether the specified field (catalog, schema, table or column) is case sensitive or not.protected java.lang.String
ADQLColumn. normalizeName(java.lang.String name, IdentifierField field)
Lets normalizing any catalog/schema/table name or alias.void
ADQLColumn. setCaseSensitive(IdentifierField field, boolean sensitive)
Sets the case sensitivity of the specified field (catalog, schema, table, column). -
Uses of IdentifierField in adql.translator
Methods in adql.translator with parameters of type IdentifierField Modifier and Type Method Description java.lang.StringBuffer
JDBCTranslator. appendIdentifier(java.lang.StringBuffer str, java.lang.String id, IdentifierField field)
Appends the given identifier in the given StringBuffer.abstract boolean
JDBCTranslator. isCaseSensitive(IdentifierField field)
Tell whether the specified identifier MUST be translated so that being interpreted case sensitively or not.boolean
MySQLTranslator. isCaseSensitive(IdentifierField field)
boolean
PostgreSQLTranslator. isCaseSensitive(IdentifierField field)
boolean
SQLServerTranslator. isCaseSensitive(IdentifierField field)
-