Package info.u_team.u_team_core.util
Klasse CastUtil
java.lang.Object
info.u_team.u_team_core.util.CastUtil
Utility methods for casts
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic <T> TassertCast(Object object, Class<T> clazz) static <T> TuncheckedCast(Object object) Convenient helper method for unchecked class without suppressing warnings.
-
Konstruktordetails
-
CastUtil
public CastUtil()
-
-
Methodendetails
-
uncheckedCast
Convenient helper method for unchecked class without suppressing warnings. CAREFULL, CAST IS STILL UNCHECKED!- Typparameter:
T- The type that the object should be- Parameter:
object- The object- Gibt zurück:
- Casted object to the desired type
- Löst aus:
ClassCastException- when unchecked cast fails
-
assertCast
-