public abstract class Types
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static <T> T |
cast(java.lang.Object o)
Simply casts the argument to
T . |
static <T> com.google.common.reflect.TypeToken<T> |
intern(com.google.common.reflect.TypeToken<T> typeToken)
Intern the given type token.
|
static <T> com.google.common.reflect.TypeToken<java.util.List<T>> |
listOf(java.lang.Class<T> type)
Creates a type token for a list of of the given type.
|
static <T> com.google.common.reflect.TypeToken<Promise<T>> |
promiseOf(java.lang.Class<T> type)
Deprecated.
since 1.5, no replacement.
|
static <T> com.google.common.reflect.TypeToken<Promise<T>> |
promiseOf(com.google.common.reflect.TypeToken<T> type)
Deprecated.
since 1.5, no replacement.
|
static <T> com.google.common.reflect.TypeToken<T> |
token(java.lang.Class<T> clazz)
Create a type token for the given class.
|
static com.google.common.reflect.TypeToken<?> |
token(java.lang.reflect.Type type)
Create a type token for the given runtime type.
|
public static <T> T cast(java.lang.Object o)
T
.
This method will throw ClassCastException
if o
is not compatible with T
.
T
- the target typeo
- the object to castpublic static com.google.common.reflect.TypeToken<?> token(java.lang.reflect.Type type)
TypeToken.of(Type)
as the result may be interned when not in development.type
- the typepublic static <T> com.google.common.reflect.TypeToken<T> token(java.lang.Class<T> clazz)
TypeToken.of(Class)
as the result may be interned when not in development.T
- the typeclazz
- the classpublic static <T> com.google.common.reflect.TypeToken<T> intern(com.google.common.reflect.TypeToken<T> typeToken)
T
- the typetypeToken
- the type token to internpublic static <T> com.google.common.reflect.TypeToken<java.util.List<T>> listOf(java.lang.Class<T> type)
import ratpack.util.Types;
import com.google.common.reflect.TypeToken;
import java.util.List;
import static org.junit.Assert.*;
public class Example {
public static void main(String... args) {
assertEquals(Types.listOf(String.class), new TypeToken<List<String>>() {});
}
}
T
- the list element typetype
- the list element type@Deprecated public static <T> com.google.common.reflect.TypeToken<Promise<T>> promiseOf(java.lang.Class<T> type)
import ratpack.util.Types;
import ratpack.exec.Promise;
import com.google.common.reflect.TypeToken;
import java.util.List;
import static org.junit.Assert.*;
public class Example {
@SuppressWarnings("deprecation")
public static void main(String... args) {
assertEquals(Types.promiseOf(String.class), new TypeToken<Promise<String>>() {});
}
}
T
- the promise element typetype
- the promise element type@Deprecated public static <T> com.google.common.reflect.TypeToken<Promise<T>> promiseOf(com.google.common.reflect.TypeToken<T> type)
import ratpack.util.Types;
import ratpack.exec.Promise;
import com.google.common.reflect.TypeToken;
import java.util.List;
import static org.junit.Assert.*;
public class Example {
@SuppressWarnings("deprecation")
public static void main(String... args) {
assertEquals(
Types.promiseOf(new TypeToken<List<String>>() {}),
new TypeToken<Promise<List<String>>>() {}
);
}
}
T
- the promise element typetype
- the promise element type