列挙型 SqlServerIndexOptions

    • メソッドの概要

      すべてのメソッド staticメソッド インスタンス・メソッド concreteメソッド 
      修飾子とタイプ メソッド 説明
      java.lang.String getColumnKey()  
      java.lang.Object getDefaultValue()  
      java.util.function.Supplier<com.sqlapp.data.db.dialect.Dialect> getSupportVersion()  
      java.lang.Class<?> getValueClass()  
      boolean isOnOff()  
      static SqlServerIndexOptions parse​(java.lang.Object obj)  
      static void setAllIndex​(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Index index)  
      static void setAllUniqueConstraint​(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.UniqueConstraint uk)  
      void setIndex​(com.sqlapp.data.schemas.Index index, java.lang.Object value)  
      void setIndex​(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Index index)  
      protected void setIndexOnOffParams​(com.sqlapp.data.schemas.Index index, java.lang.Object value)  
      protected void setOnOffParams​(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.properties.SpecificsProperty<?> obj)  
      protected void setParams​(com.sqlapp.jdbc.ExResultSet rs, java.util.function.Consumer<java.lang.Object> cons)  
      void setTable​(com.sqlapp.data.schemas.Table table, java.lang.String value)  
      void setTable​(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.Table table)  
      void setUniqueConstraint​(com.sqlapp.jdbc.ExResultSet rs, com.sqlapp.data.schemas.UniqueConstraint uk)  
      boolean supports​(SqlServer2000 dialect)  
      static SqlServerIndexOptions valueOf​(java.lang.String name)
      指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に 一致している必要があります。(余分な空白文字を含めることは できません。)
      static SqlServerIndexOptions[] values()
      この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために 使用できます:
      for (SqlServerIndexOptions c : SqlServerIndexOptions.values())
          System.out.println(c);
      
      • クラスから継承されたメソッド java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • クラスから継承されたメソッド java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 列挙型定数の詳細

      • PAD_INDEX

        public static final SqlServerIndexOptions PAD_INDEX
        インデックス作成中の中間レベル ページの空き領域の割合にFILLFACTORを適用するか?
      • SORT_IN_TEMPDB

        public static final SqlServerIndexOptions SORT_IN_TEMPDB
        tempdb に一時的な並べ替え結果を格納するかどうかを指定するか?
      • ALLOW_ROW_LOCKS

        public static final SqlServerIndexOptions ALLOW_ROW_LOCKS
        インデックス データへのアクセスに行ロックを使用するか
      • ALLOW_PAGE_LOCKS

        public static final SqlServerIndexOptions ALLOW_PAGE_LOCKS
        インデックス データへのアクセスにページ ロックを使用するか
    • メソッドの詳細

      • 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
      • 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
      • isOnOff

        public boolean isOnOff()