Bluestep JS Documentation
Preparing search index...
Java
Java
SortedMap
Interface SortedMap<K, V>
Represents a java.util.SortedMap.
interface
SortedMap
<
K
,
V
>
{
clear
()
:
void
;
compute
(
key
:
K
,
remappingFn
:
BiFunction
<
K
,
V
,
V
>
)
:
V
;
computeIfAbsent
(
key
:
K
,
mappingFn
:
Function
<
K
,
V
>
)
:
V
;
computeIfPresent
(
key
:
K
,
remappingFn
:
BiFunction
<
K
,
V
,
V
>
)
:
V
;
containsKey
(
key
:
any
)
:
boolean
;
containsValue
(
key
:
any
)
:
boolean
;
entrySet
()
:
Set
<
Java
.
Map
.
Entry
<
K
,
V
>
>
;
firstKey
()
:
K
;
forEach
(
action
:
BiConsumer
<
K
,
V
>
)
:
void
;
get
(
key
:
any
)
:
V
;
getOrDefault
(
key
:
any
,
defaultValue
:
V
)
:
V
;
hashCode
()
:
number
;
isEmpty
()
:
boolean
;
keySet
()
:
Set
<
K
>
;
lastKey
()
:
K
;
merge
(
key
:
K
,
value
:
V
,
remappingFn
:
BiFunction
<
V
,
V
,
V
>
)
:
V
;
put
(
key
:
K
,
value
:
V
)
:
V
;
putAll
(
m
:
Java
.
Map
<
K
,
V
>
)
:
void
;
putIfAbstent
(
key
:
K
,
value
:
V
)
:
V
;
remove
(
key
:
any
)
:
V
;
remove
(
key
:
any
,
value
:
any
)
:
boolean
;
replace
(
key
:
K
,
value
:
V
)
:
V
;
replace
(
key
:
K
,
oldValue
:
V
,
newValue
:
V
)
:
boolean
;
replaceAll
(
fnc
:
BiFunction
<
K
,
V
,
V
>
)
:
void
;
size
()
:
number
;
values
()
:
Collection
<
V
>
;
}
Type Parameters
K
V
Hierarchy (
View Summary
)
Java
.
Map
<
K
,
V
>
SortedMap
Index
Methods
clear
compute
compute
If
Absent
compute
If
Present
contains
Key
contains
Value
entry
Set
first
Key
for
Each
get
get
Or
Default
hash
Code
is
Empty
key
Set
last
Key
merge
put
put
All
put
If
Abstent
remove
replace
replace
All
size
values
Methods
clear
clear
()
:
void
Returns
void
compute
compute
(
key
:
K
,
remappingFn
:
BiFunction
<
K
,
V
,
V
>
)
:
V
Parameters
key
:
K
remappingFn
:
BiFunction
<
K
,
V
,
V
>
Returns
V
compute
If
Absent
computeIfAbsent
(
key
:
K
,
mappingFn
:
Function
<
K
,
V
>
)
:
V
Parameters
key
:
K
mappingFn
:
Function
<
K
,
V
>
Returns
V
compute
If
Present
computeIfPresent
(
key
:
K
,
remappingFn
:
BiFunction
<
K
,
V
,
V
>
)
:
V
Parameters
key
:
K
remappingFn
:
BiFunction
<
K
,
V
,
V
>
Returns
V
contains
Key
containsKey
(
key
:
any
)
:
boolean
Parameters
key
:
any
Returns
boolean
contains
Value
containsValue
(
key
:
any
)
:
boolean
Parameters
key
:
any
Returns
boolean
entry
Set
entrySet
()
:
Set
<
Java
.
Map
.
Entry
<
K
,
V
>
>
Returns
Set
<
Java
.
Map
.
Entry
<
K
,
V
>
>
first
Key
firstKey
()
:
K
Returns
K
for
Each
forEach
(
action
:
BiConsumer
<
K
,
V
>
)
:
void
Parameters
action
:
BiConsumer
<
K
,
V
>
Returns
void
get
get
(
key
:
any
)
:
V
Parameters
key
:
any
Returns
V
get
Or
Default
getOrDefault
(
key
:
any
,
defaultValue
:
V
)
:
V
Parameters
key
:
any
defaultValue
:
V
Returns
V
hash
Code
hashCode
()
:
number
Returns
number
is
Empty
isEmpty
()
:
boolean
Returns
boolean
key
Set
keySet
()
:
Set
<
K
>
Returns
Set
<
K
>
last
Key
lastKey
()
:
K
Returns
K
merge
merge
(
key
:
K
,
value
:
V
,
remappingFn
:
BiFunction
<
V
,
V
,
V
>
)
:
V
Parameters
key
:
K
value
:
V
remappingFn
:
BiFunction
<
V
,
V
,
V
>
Returns
V
put
put
(
key
:
K
,
value
:
V
)
:
V
Parameters
key
:
K
value
:
V
Returns
V
put
All
putAll
(
m
:
Java
.
Map
<
K
,
V
>
)
:
void
Parameters
m
:
Java
.
Map
<
K
,
V
>
Returns
void
put
If
Abstent
putIfAbstent
(
key
:
K
,
value
:
V
)
:
V
Parameters
key
:
K
value
:
V
Returns
V
remove
remove
(
key
:
any
)
:
V
Parameters
key
:
any
Returns
V
remove
(
key
:
any
,
value
:
any
)
:
boolean
Parameters
key
:
any
value
:
any
Returns
boolean
replace
replace
(
key
:
K
,
value
:
V
)
:
V
Parameters
key
:
K
value
:
V
Returns
V
replace
(
key
:
K
,
oldValue
:
V
,
newValue
:
V
)
:
boolean
Parameters
key
:
K
oldValue
:
V
newValue
:
V
Returns
boolean
replace
All
replaceAll
(
fnc
:
BiFunction
<
K
,
V
,
V
>
)
:
void
Parameters
fnc
:
BiFunction
<
K
,
V
,
V
>
Returns
void
size
size
()
:
number
Returns
number
values
values
()
:
Collection
<
V
>
Returns
Collection
<
V
>
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
On This Page
Methods
clear
compute
compute
If
Absent
compute
If
Present
contains
Key
contains
Value
entry
Set
first
Key
for
Each
get
get
Or
Default
hash
Code
is
Empty
key
Set
last
Key
merge
put
put
All
put
If
Abstent
remove
replace
replace
All
size
values
Bluestep JS Documentation
Loading...
Represents a java.util.SortedMap.