Package io.vertx.rxjava3.sqlclient.desc
Class ColumnDescriptor
- java.lang.Object
-
- io.vertx.rxjava3.sqlclient.desc.ColumnDescriptor
-
public class ColumnDescriptor extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ColumnDescriptor>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ColumnDescriptor(ColumnDescriptor delegate)ColumnDescriptor(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ColumnDescriptorgetDelegate()inthashCode()booleanisArray()JDBCTypejdbcType()Stringname()static ColumnDescriptornewInstance(ColumnDescriptor arg)StringtoString()StringtypeName()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ColumnDescriptor> __TYPE_ARG
-
-
Constructor Detail
-
ColumnDescriptor
public ColumnDescriptor(ColumnDescriptor delegate)
-
ColumnDescriptor
public ColumnDescriptor(Object delegate)
-
-
Method Detail
-
getDelegate
public ColumnDescriptor getDelegate()
-
name
public String name()
- Returns:
- the column name
-
isArray
public boolean isArray()
- Returns:
- whether the column is an array
-
typeName
public String typeName()
- Returns:
- vendor-specific name of the column type, or
nullif unknown
-
jdbcType
public JDBCType jdbcType()
- Returns:
- the most appropriate
JDBCType
-
newInstance
public static ColumnDescriptor newInstance(ColumnDescriptor arg)
-
-