public class GeneratorColumn extends Object
GeneratorTable
.Modifier and Type | Field and Description |
---|---|
private boolean |
autoGenerated
Indicates that the values of this column are not part of an insert statement, because they are generated by the
database.
|
private int |
index
The index of this column in the list of all columns of the associated table.
|
private String |
name
The name of this column.
|
private GeneratorTable |
table
The table of this column.
|
Constructor and Description |
---|
GeneratorColumn(GeneratorTable table,
int index,
String name,
boolean autoGenerated) |
Modifier and Type | Method and Description |
---|---|
int |
getIndex()
The index of this column in the list of all columns of the associated table.
|
String |
getName()
The name of this column.
|
GeneratorTable |
getTable()
The table of this column.
|
boolean |
isAutoGenerated()
Indicates that the values of this column are not part of an insert statement, because they are generated by the
database.
|
String |
toString() |
private final GeneratorTable table
private final int index
private final String name
private final boolean autoGenerated
@ConstructorProperties(value={"table","index","name","autoGenerated"}) @Generated(value="lombok") public GeneratorColumn(GeneratorTable table, int index, String name, boolean autoGenerated)
@Generated(value="lombok") public boolean isAutoGenerated()
@Generated(value="lombok") public GeneratorTable getTable()
@Generated(value="lombok") public int getIndex()
@Generated(value="lombok") public String getName()
Copyright © 2022 fastnate.org. All rights reserved.