java/sql-dk/src/main/java/info/globalcode/sql/dk/formatting/ColumnDescriptor.java
author František Kučera <franta-hg@frantovo.cz>
Tue, 05 Mar 2019 21:22:33 +0100
branchv_0
changeset 245 b6ff5b7a8422
parent 238 4a1864c3e867
child 250 aae5009bd0af
permissions -rw-r--r--
sqldk-relpipe convergence started
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.formatting;
    19 
    20 import java.sql.Types;
    21 
    22 /**
    23  *
    24  * @author Ing. František Kučera (frantovo.cz)
    25  */
    26 public class ColumnDescriptor {
    27 
    28 	private String name;
    29 	private String label;
    30 	private int type;
    31 	private String typeName;
    32 	private boolean firstColumn;
    33 	private boolean lastColumn;
    34 	private int columnNumber;
    35 	private String tableName;
    36 
    37 	/**
    38 	 * @return column name
    39 	 * @see #getLabel()
    40 	 */
    41 	public String getName() {
    42 		return name;
    43 	}
    44 
    45 	public void setName(String name) {
    46 		this.name = name;
    47 	}
    48 
    49 	/**
    50 	 * @return label specified by the SQL AS clause
    51 	 */
    52 	public String getLabel() {
    53 		return label;
    54 	}
    55 
    56 	public void setLabel(String label) {
    57 		this.label = label;
    58 	}
    59 
    60 	public int getType() {
    61 		return type;
    62 	}
    63 
    64 	public void setType(int type) {
    65 		this.type = type;
    66 	}
    67 
    68 	public String getTypeName() {
    69 		return typeName;
    70 	}
    71 
    72 	public void setTypeName(String typeName) {
    73 		this.typeName = typeName;
    74 	}
    75 
    76 	public boolean isFirstColumn() {
    77 		return firstColumn;
    78 	}
    79 
    80 	public void setFirstColumn(boolean firstColumn) {
    81 		this.firstColumn = firstColumn;
    82 	}
    83 
    84 	public boolean isLastColumn() {
    85 		return lastColumn;
    86 	}
    87 
    88 	public void setLastColumn(boolean lastColumn) {
    89 		this.lastColumn = lastColumn;
    90 	}
    91 
    92 	/**
    93 	 * @return number of this column, 1 = first
    94 	 */
    95 	public int getColumnNumber() {
    96 		return columnNumber;
    97 	}
    98 
    99 	public void setColumnNumber(int columnNumber) {
   100 		this.columnNumber = columnNumber;
   101 	}
   102 
   103 	public String getTableName() {
   104 		return tableName;
   105 	}
   106 
   107 	public void setTableName(String tableName) {
   108 		this.tableName = tableName;
   109 	}
   110 
   111 	public boolean isBoolean() {
   112 		return type == Types.BOOLEAN;
   113 	}
   114 
   115 	public boolean isNumeric() {
   116 		switch (type) {
   117 			case Types.BIGINT:
   118 			case Types.DECIMAL:
   119 			case Types.DOUBLE:
   120 			case Types.FLOAT:
   121 			case Types.INTEGER:
   122 			case Types.NUMERIC:
   123 			case Types.REAL:
   124 			case Types.SMALLINT:
   125 			case Types.TINYINT:
   126 				return true;
   127 			default:
   128 				return false;
   129 		}
   130 	}
   131 }