forked from JSQLParser/JSqlParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColumn.java
More file actions
116 lines (97 loc) · 2.78 KB
/
Column.java
File metadata and controls
116 lines (97 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2013 JSQLParser
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
* #L%
*/
package net.sf.jsqlparser.schema;
import net.sf.jsqlparser.expression.*;
import net.sf.jsqlparser.parser.ASTNodeAccessImpl;
/**
* A column. It can have the table name it belongs to.
*/
public final class Column extends ASTNodeAccessImpl implements Expression, MultiPartName {
private Table table;
private String columnName;
public Column() {
}
public Column(Table table, String columnName) {
setTable(table);
setColumnName(columnName);
}
public Column(String columnName) {
this(null, columnName);
}
public Table getTable() {
return table;
}
public void setTable(Table table) {
this.table = table;
}
public String getColumnName() {
return columnName;
}
public void setColumnName(String string) {
columnName = string;
}
@Override
public String getFullyQualifiedName() {
return getFullyQualifiedName(false);
}
/**
* Get FQN.
* @param aliases - use aliases.
* @return
*/
public String getFullyQualifiedName(boolean aliases) {
StringBuilder fqn = new StringBuilder();
if (table != null) {
if (aliases && table.getAlias() != null) {
fqn.append(table.getAlias().getName());
} else {
fqn.append(table.getFullyQualifiedName());
}
if (fqn.length() > 0) {
fqn.append('.');
}
}
if (columnName != null) {
fqn.append(getName());
}
return fqn.toString();
}
/**
* Get name.
* @return
*/
public String getName() {
StringBuilder name = new StringBuilder();
if (columnName != null) {
name.append(columnName);
}
return name.toString();
}
@Override
public void accept(ExpressionVisitor expressionVisitor) {
expressionVisitor.visit(this);
}
@Override
public String toString() {
return getFullyQualifiedName();
}
}