| Package | Description |
|---|---|
| java.lang | |
| java.lang.annotation | |
| java.nio.charset | |
| java.util |
| Modifier and Type | Class and Description |
|---|---|
class |
Byte
The Byte class is the standard wrapper for byte values.
|
class |
Double
The Double class wraps a value of the primitive type double in an object.
|
class |
Enum<E extends Enum<E>>
Implementation class required to compile enums
|
class |
Float
The Float class wraps a value of primitive type float in an object.
|
class |
Integer
The Integer class wraps a value of the primitive type int in an object.
|
class |
Long
The Long class wraps a value of the primitive type long in an object.
|
class |
Short
The Short class is the standard wrapper for short values.
|
class |
String
The String class represents character strings.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ElementType
A mirror of java.lang.annotation.ElementType.
|
class |
RetentionPolicy
A mirror of java.lang.annotation.RetentionPolicy.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Charset
Added this for Kotlin
|
| Modifier and Type | Class and Description |
|---|---|
class |
Date
The class Date represents a specific instant in time, with millisecond precision.
|
| Modifier and Type | Method and Description |
|---|---|
static <T extends Object & Comparable<? super T>> |
Collections.max(Collection<? extends T> collection)
Searches the specified collection for the maximum element.
|
static <T extends Object & Comparable<? super T>> |
Collections.min(Collection<? extends T> collection)
Searches the specified collection for the minimum element.
|
static <T extends Comparable<? super T>> |
Collections.sort(List<T> list)
Sorts the specified list in ascending natural order.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> int |
Collections.binarySearch(List<? extends Comparable<? super T>> list,
T object)
Performs a binary search for the specified element in the specified
sorted list.
|
Copyright © 2024. All rights reserved.