列挙型 SqlServerIndexOptions
- java.lang.Object
-
- java.lang.Enum<SqlServerIndexOptions>
-
- com.sqlapp.data.db.dialect.sqlserver.util.SqlServerIndexOptions
-
- すべての実装されたインタフェース:
java.io.Serializable,java.lang.Comparable<SqlServerIndexOptions>
public enum SqlServerIndexOptions extends java.lang.Enum<SqlServerIndexOptions>
-
-
列挙型定数の概要
列挙定数 列挙型定数 説明 ALLOW_PAGE_LOCKSインデックス データへのアクセスにページ ロックを使用するかALLOW_ROW_LOCKSインデックス データへのアクセスに行ロックを使用するかCOMPRESSION_DELAYDATA_COMPRESSIONFILLFACTORIGNORE_DUP_KEYOPTIMIZE_FOR_SEQUENTIAL_KEYPAD_INDEXインデックス作成中の中間レベル ページの空き領域の割合にFILLFACTORを適用するか?SORT_IN_TEMPDBtempdb に一時的な並べ替え結果を格納するかどうかを指定するか?STATISTICS_INCREMENTALSTATISTICS_NORECOMPUTE
-
メソッドの概要
すべてのメソッド staticメソッド インスタンス・メソッド concreteメソッド 修飾子とタイプ メソッド 説明 java.lang.StringgetColumnKey()java.lang.ObjectgetDefaultValue()java.util.function.Supplier<com.sqlapp.data.db.dialect.Dialect>getSupportVersion()java.lang.Class<?>getValueClass()booleanisOnOff()static SqlServerIndexOptionsparse(java.lang.Object obj)static voidsetAllIndex(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Index index)static voidsetAllUniqueConstraint(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.UniqueConstraint uk)voidsetIndex(com.sqlapp.data.schemas.Index index, java.lang.Object value)voidsetIndex(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Index index)protected voidsetIndexOnOffParams(com.sqlapp.data.schemas.Index index, java.lang.Object value)protected voidsetOnOffParams(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.properties.SpecificsProperty<?> obj)protected voidsetParams(com.sqlapp.jdbc.ExResultSet rs, java.util.function.Consumer<java.lang.Object> cons)voidsetTable(com.sqlapp.data.schemas.Table table, java.lang.String value)voidsetTable(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Table table)voidsetUniqueConstraint(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.UniqueConstraint uk)booleansupports(SqlServer2000 dialect)static SqlServerIndexOptionsvalueOf(java.lang.String name)指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に 一致している必要があります。(余分な空白文字を含めることは できません。)static SqlServerIndexOptions[]values()この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために 使用できます:for (SqlServerIndexOptions c : SqlServerIndexOptions.values()) System.out.println(c);
-
-
-
列挙型定数の詳細
-
PAD_INDEX
public static final SqlServerIndexOptions PAD_INDEX
インデックス作成中の中間レベル ページの空き領域の割合にFILLFACTORを適用するか?
-
FILLFACTOR
public static final SqlServerIndexOptions FILLFACTOR
-
SORT_IN_TEMPDB
public static final SqlServerIndexOptions SORT_IN_TEMPDB
tempdb に一時的な並べ替え結果を格納するかどうかを指定するか?
-
IGNORE_DUP_KEY
public static final SqlServerIndexOptions IGNORE_DUP_KEY
-
STATISTICS_NORECOMPUTE
public static final SqlServerIndexOptions STATISTICS_NORECOMPUTE
-
STATISTICS_INCREMENTAL
public static final SqlServerIndexOptions STATISTICS_INCREMENTAL
-
ALLOW_ROW_LOCKS
public static final SqlServerIndexOptions ALLOW_ROW_LOCKS
インデックス データへのアクセスに行ロックを使用するか
-
ALLOW_PAGE_LOCKS
public static final SqlServerIndexOptions ALLOW_PAGE_LOCKS
インデックス データへのアクセスにページ ロックを使用するか
-
OPTIMIZE_FOR_SEQUENTIAL_KEY
public static final SqlServerIndexOptions OPTIMIZE_FOR_SEQUENTIAL_KEY
-
COMPRESSION_DELAY
public static final SqlServerIndexOptions COMPRESSION_DELAY
-
DATA_COMPRESSION
public static final SqlServerIndexOptions DATA_COMPRESSION
-
-
メソッドの詳細
-
values
public static SqlServerIndexOptions[] values()
この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために 使用できます:for (SqlServerIndexOptions c : SqlServerIndexOptions.values()) System.out.println(c);
- 戻り値:
- この列挙型の定数を含む、宣言されている順序での配列
-
valueOf
public static SqlServerIndexOptions valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に 一致している必要があります。(余分な空白文字を含めることは できません。)- パラメータ:
name- 返される列挙型定数の名前。- 戻り値:
- 指定した名前の列挙型定数
- 例外:
java.lang.IllegalArgumentException- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException- 引数がnullの場合
-
getValueClass
public java.lang.Class<?> getValueClass()
-
getDefaultValue
public java.lang.Object getDefaultValue()
-
setIndex
public void setIndex(com.sqlapp.data.schemas.Index index, java.lang.Object value)
-
setTable
public void setTable(com.sqlapp.data.schemas.Table table, java.lang.String value)
-
setTable
public void setTable(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Table table) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
setIndex
public void setIndex(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Index index) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
setAllIndex
public static void setAllIndex(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Index index) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
getColumnKey
public java.lang.String getColumnKey()
-
setUniqueConstraint
public void setUniqueConstraint(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.UniqueConstraint uk) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
setAllUniqueConstraint
public static void setAllUniqueConstraint(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.UniqueConstraint uk) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
setIndexOnOffParams
protected void setIndexOnOffParams(com.sqlapp.data.schemas.Index index, java.lang.Object value)
-
setParams
protected void setParams(com.sqlapp.jdbc.ExResultSet rs, java.util.function.Consumer<java.lang.Object> cons) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
supports
public boolean supports(SqlServer2000 dialect)
-
getSupportVersion
public java.util.function.Supplier<com.sqlapp.data.db.dialect.Dialect> getSupportVersion()
-
setOnOffParams
protected void setOnOffParams(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.properties.SpecificsProperty<?> obj) throws java.sql.SQLException- 例外:
java.sql.SQLException
-
parse
public static SqlServerIndexOptions parse(java.lang.Object obj)
-
isOnOff
public boolean isOnOff()
-
-