com.datastax.oss.driver.api.core.type.reflect.GenericType Java Examples

The following examples show how to use com.datastax.oss.driver.api.core.type.reflect.GenericType. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: EnumNameCodec.java    From doov with Apache License 2.0 4 votes vote down vote up
protected EnumNameCodec(Class<E> type) {
    super(TypeCodecs.TEXT, GenericType.of(type));
    this.type = type;
}
 
Example #2
Source File: CassandraEnumCodec.java    From act-platform with ISC License 4 votes vote down vote up
@Override
public GenericType<E> getJavaType() {
  return GenericType.of(enumClass);
}
 
Example #3
Source File: CassandraSupport.java    From jesterj with Apache License 2.0 4 votes vote down vote up
@Nullable
@Override
public <RequestT extends Request, ResultT> ResultT execute(@NonNull RequestT request, @NonNull GenericType<ResultT> resultType) {
  return sessionRef.execute(request,resultType);
}