當前位置: 首頁>>代碼示例>>Java>>正文


Java DataType.date方法代碼示例

本文整理匯總了Java中com.datastax.driver.core.DataType.date方法的典型用法代碼示例。如果您正苦於以下問題:Java DataType.date方法的具體用法?Java DataType.date怎麽用?Java DataType.date使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.datastax.driver.core.DataType的用法示例。


在下文中一共展示了DataType.date方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: cqlType

import com.datastax.driver.core.DataType; //導入方法依賴的package包/類
private static DataType cqlType(FieldInfo info) {
    if (String.class.equals(info.type())) {
        return DataType.text();
    } else if (Boolean.class.equals(info.type()) || Boolean.TYPE.equals(info.type())) {
        return DataType.cboolean();
    } else if (Long.class.equals(info.type()) || Long.TYPE.equals(info.type())) {
        return DataType.cint();
    } else if (Double.class.equals(info.type()) || Double.TYPE.equals(info.type())) {
        return DataType.cint();
    } else if (Float.class.equals(info.type()) || Float.TYPE.equals(info.type())) {
        return DataType.cint();
    } else if (Integer.class.equals(info.type()) || Integer.TYPE.equals(info.type())) {
        return DataType.cint();
    } else if (LocalDate.class.equals(info.type())) {
        return DataType.date();
    } else if (Enum.class.isAssignableFrom(info.type())) {
        return DataType.set(DataType.text());
    } else if (Collection.class.isAssignableFrom(info.type())) {
        return DataType.set(DataType.text());
    }
    throw new IllegalArgumentException("unknown type " + info.type() + " for " + info.id());
}
 
開發者ID:lesfurets,項目名稱:dOOv,代碼行數:23,代碼來源:CassandraQueryBuilderTest.java

示例2: cqlType

import com.datastax.driver.core.DataType; //導入方法依賴的package包/類
private static DataType cqlType(FieldInfo info) {
    if (String.class.equals(info.type())) {
        return text();
    } else if (Boolean.class.equals(info.type()) || Boolean.TYPE.equals(info.type())) {
        return DataType.cboolean();
    } else if (Long.class.equals(info.type()) || Long.TYPE.equals(info.type())) {
        return DataType.cint();
    } else if (LocalDate.class.equals(info.type())) {
        return DataType.date();
    } else if (Enum.class.isAssignableFrom(info.type())) {
        return DataType.set(text());
    } else if (Collection.class.isAssignableFrom(info.type())) {
        return DataType.set(text());
    }
    throw new IllegalArgumentException("unknown type " + info.type() + " for " + info.id());
}
 
開發者ID:lesfurets,項目名稱:dOOv,代碼行數:17,代碼來源:LiveCode.java

示例3: StringDateCodec

import com.datastax.driver.core.DataType; //導入方法依賴的package包/類
private StringDateCodec() {
    super(DataType.date(), String.class);
}
 
開發者ID:zhicwu,項目名稱:cassandra-jdbc-driver,代碼行數:4,代碼來源:StringDateCodec.java

示例4: JavaSqlDateCodec

import com.datastax.driver.core.DataType; //導入方法依賴的package包/類
private JavaSqlDateCodec() {
    super(DataType.date(), Date.class);
}
 
開發者ID:zhicwu,項目名稱:cassandra-jdbc-driver,代碼行數:4,代碼來源:JavaSqlDateCodec.java


注:本文中的com.datastax.driver.core.DataType.date方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。