org.beangle.commons.lang.Primitives
Attributes
-
Since
-
3.2.0
-
Graph
-
-
Supertypes
-
class Object
trait Matchable
class Any
-
Self type
-
Members list
Returns true if type is one of the nine primitive-wrapper types, such as [[Integer]].
Returns true if type is one of the nine primitive-wrapper types, such as [[Integer]].
Attributes
-
See also
-
Returns the corresponding primitive type of type if it is a wrapper type; otherwise returns type itself. Idempotent.
Returns the corresponding primitive type of type if it is a wrapper type; otherwise returns type itself. Idempotent.
unwrap(Integer.class) == int.class
unwrap(int.class) == int.class
unwrap(String.class) == String.class
Attributes
Returns the corresponding wrapper type of type if it is a primitive type; otherwise returns type itself. Idempotent.
Returns the corresponding wrapper type of type if it is a primitive type; otherwise returns type itself. Idempotent.
wrap(int.class) == Integer.class
wrap(Integer.class) == Integer.class
wrap(String.class) == String.class
Attributes