gradle
Toggle table of contents
9.1.0-20250628022042+0000
API
Platform filter
API
Switch theme
Search in API
gradle
gradle
/
org.gradle.api.java.archives
/
Attributes
Attributes
API
interface
Attributes
:
Map
<
K
,
V
>
(
source
)
Represent the attributes of a manifest section.
Members
Functions
clear
Link copied to clipboard
API
abstract
fun
clear
(
)
compute
Link copied to clipboard
API
open
fun
compute
(
p
:
K
,
p1
:
BiFunction
<
in
K
,
in
V
,
out
V
>
)
:
V
compute
If
Absent
Link copied to clipboard
API
open
fun
computeIfAbsent
(
p
:
K
,
p1
:
(
in
K
)
->
out
V
)
:
V
compute
If
Present
Link copied to clipboard
API
open
fun
computeIfPresent
(
p
:
K
,
p1
:
BiFunction
<
in
K
,
in
V
,
out
V
>
)
:
V
contains
Key
Link copied to clipboard
API
abstract
fun
containsKey
(
p
:
Any
)
:
Boolean
contains
Value
Link copied to clipboard
API
abstract
fun
containsValue
(
p
:
Any
)
:
Boolean
copy
Of
Link copied to clipboard
API
open
fun
<
K
,
V
>
copyOf
(
p
:
Map
<
out
K
,
out
V
>
)
:
Map
<
K
,
V
>
entry
Link copied to clipboard
API
open
fun
<
K
,
V
>
entry
(
p
:
K
,
p1
:
V
)
:
Map.Entry
<
K
,
V
>
entry
Set
Link copied to clipboard
API
abstract
fun
entrySet
(
)
:
Set
<
Map.Entry
<
K
,
V
>
>
equals
Link copied to clipboard
API
abstract
fun
equals
(
p
:
Any
)
:
Boolean
for
Each
Link copied to clipboard
API
open
fun
forEach
(
p
:
BiConsumer
<
in
K
,
in
V
>
)
get
Link copied to clipboard
API
abstract
fun
get
(
p
:
Any
)
:
V
get
Or
Default
Link copied to clipboard
API
open
fun
getOrDefault
(
p
:
Any
,
p1
:
V
)
:
V
hash
Code
Link copied to clipboard
API
abstract
fun
hashCode
(
)
:
Int
is
Empty
Link copied to clipboard
API
abstract
fun
isEmpty
(
)
:
Boolean
key
Set
Link copied to clipboard
API
abstract
fun
keySet
(
)
:
Set
<
K
>
merge
Link copied to clipboard
API
open
fun
merge
(
p
:
K
,
p1
:
V
,
p2
:
BiFunction
<
in
V
,
in
V
,
out
V
>
)
:
V
of
Link copied to clipboard
API
open
fun
<
K
,
V
>
of
(
)
:
Map
<
K
,
V
>
of
Entries
Link copied to clipboard
API
open
fun
<
K
,
V
>
ofEntries
(
p
:
Array
<
Map.Entry
<
out
K
,
out
V
>
>
)
:
Map
<
K
,
V
>
put
Link copied to clipboard
API
abstract
fun
put
(
p
:
K
,
p1
:
V
)
:
V
put
All
Link copied to clipboard
API
abstract
fun
putAll
(
p
:
Map
<
out
K
,
out
V
>
)
put
If
Absent
Link copied to clipboard
API
open
fun
putIfAbsent
(
p
:
K
,
p1
:
V
)
:
V
remove
Link copied to clipboard
API
abstract
fun
remove
(
p
:
Any
)
:
V
open
fun
remove
(
p
:
Any
,
p1
:
Any
)
:
Boolean
replace
Link copied to clipboard
API
open
fun
replace
(
p
:
K
,
p1
:
V
)
:
V
open
fun
replace
(
p
:
K
,
p1
:
V
,
p2
:
V
)
:
Boolean
replace
All
Link copied to clipboard
API
open
fun
replaceAll
(
p
:
BiFunction
<
in
K
,
in
V
,
out
V
>
)
size
Link copied to clipboard
API
abstract
fun
size
(
)
:
Int
values
Link copied to clipboard
API
abstract
fun
values
(
)
:
Collection
<
V
>