Sha256: 44ed56c07786fdf720d4138a82e429d3573eb4e535de4c3d2f0e483ce276d3b0
Contents?: true
Size: 354 Bytes
Versions: 155
Compression:
Stored size: 354 Bytes
Contents
package org.embulk.config; import java.lang.reflect.Type; import com.fasterxml.jackson.core.type.TypeReference; class GenericTypeReference extends TypeReference<Object> { private final Type type; public GenericTypeReference(Type type) { this.type = type; } public Type getType() { return type; } }
Version data entries
155 entries across 155 versions & 1 rubygems