本文整理匯總了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());
}
示例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());
}
示例3: StringDateCodec
import com.datastax.driver.core.DataType; //導入方法依賴的package包/類
private StringDateCodec() {
super(DataType.date(), String.class);
}
示例4: JavaSqlDateCodec
import com.datastax.driver.core.DataType; //導入方法依賴的package包/類
private JavaSqlDateCodec() {
super(DataType.date(), Date.class);
}