public static class PostgresTypes.PostgresType extends Object
| Constructor and Description |
|---|
PostgresType(int oid,
long unsignedOid,
String name,
String category) |
PostgresType(int oid,
String name,
String category) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getName() |
int |
getOid() |
long |
getUnsignedOid() |
int |
hashCode() |
boolean |
isArray() |
boolean |
isBitString() |
boolean |
isBoolean() |
boolean |
isComposite() |
boolean |
isDateTime() |
boolean |
isEnum() |
boolean |
isGeometric() |
boolean |
isNetworkAddress() |
boolean |
isNumeric() |
boolean |
isPseudo() |
boolean |
isString() |
boolean |
isTimespan() |
boolean |
isUnknown() |
boolean |
isUserDefinedType() |
String |
toString() |
public int getOid()
public long getUnsignedOid()
public String getName()
public boolean isArray()
true if the type is an array type (category code A)public boolean isBoolean()
true if the type is a boolean type (category code B)public boolean isComposite()
true if the type is a composite type (category code C)public boolean isDateTime()
true if the type is a date/time type (category code D)public boolean isEnum()
true if the type is an enum type (category code E)public boolean isGeometric()
true if the type is a geometric type (category code G)public boolean isNetworkAddress()
true if the type is a network address type (category code I)public boolean isNumeric()
true if the type is a numeric type (category code N)public boolean isPseudo()
true if the type is a pseudo-type (category code P)public boolean isString()
true if the type is a string type (category code S)public boolean isTimespan()
true if the type is a timespan type (category code T)public boolean isUserDefinedType()
true if the type is a user-defined type (category code U)public boolean isBitString()
true if the type is a bit-string type (category code V)public boolean isUnknown()
true if the type is an unknown type (category code X)Copyright © 2022. All rights reserved.