Package org.jooq.conf
Class ParseSearchSchema
- java.lang.Object
-
- org.jooq.conf.ParseSearchSchema
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,XMLAppendable
public class ParseSearchSchema extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, XMLAppendable
A schema that is on the search path.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseSearchSchema()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(XMLBuilder builder)
java.lang.Object
clone()
boolean
equals(java.lang.Object that)
java.lang.String
getCatalog()
The catalog qualifier of the schema, if applicable.java.lang.String
getSchema()
The schema qualifier whose elements can be found from the search path.int
hashCode()
void
setCatalog(java.lang.String value)
Sets the value of the catalog property.void
setSchema(java.lang.String value)
Sets the value of the schema property.java.lang.String
toString()
ParseSearchSchema
withCatalog(java.lang.String value)
ParseSearchSchema
withSchema(java.lang.String value)
-
-
-
Method Detail
-
getCatalog
public java.lang.String getCatalog()
The catalog qualifier of the schema, if applicable.- Returns:
- possible object is
String
-
setCatalog
public void setCatalog(java.lang.String value)
Sets the value of the catalog property.- Parameters:
value
- allowed object isString
-
getSchema
public java.lang.String getSchema()
The schema qualifier whose elements can be found from the search path.- Returns:
- possible object is
String
-
setSchema
public void setSchema(java.lang.String value)
Sets the value of the schema property.- Parameters:
value
- allowed object isString
-
withCatalog
public ParseSearchSchema withCatalog(java.lang.String value)
-
withSchema
public ParseSearchSchema withSchema(java.lang.String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendTo
in interfaceXMLAppendable
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object that)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
clone
public java.lang.Object clone()
- Overrides:
clone
in classjava.lang.Object
-
-