public enum SelectClauseType extends Enum<SelectClauseType>
| 列挙型定数と説明 |
|---|
AVG |
COLUMNS |
COUNT_DISTINCT |
MAX |
MIN |
PLAIN_COUNT |
SUM |
UNIQUE_COUNT |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
isCount() |
boolean |
isScalar() |
boolean |
isSpecifiedScalar()
Does the scalar need specified only-one column?
|
boolean |
isUniqueScalar()
Should the scalar be selected uniquely?
|
static SelectClauseType |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static SelectClauseType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final SelectClauseType COLUMNS
public static final SelectClauseType UNIQUE_COUNT
public static final SelectClauseType PLAIN_COUNT
public static final SelectClauseType COUNT_DISTINCT
public static final SelectClauseType MAX
public static final SelectClauseType MIN
public static final SelectClauseType SUM
public static final SelectClauseType AVG
public static SelectClauseType[] values()
for(SelectClauseType c: SelectClauseType.values()) System.out.println(c);
public static SelectClauseType valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public boolean isCount()
public boolean isScalar()
public boolean isUniqueScalar()
public boolean isSpecifiedScalar()
Copyright © 2014–2015 The DBFlute Project. All rights reserved.