Smithy Kotlin
Toggle table of contents
1.5.19
common
Platform filter
common
Switch theme
Skip to content
Smithy Kotlin
runtime-core
/
aws.smithy.kotlin.runtime.content
/
DocumentBuilder
/
ListBuilder
List
Builder
class
ListBuilder
Members
Properties
content
Link copied to clipboard
val
content
:
MutableList
<
Document
?
>
Functions
add
Link copied to clipboard
fun
add
(
value
:
Document
?
)
:
Boolean
fun
add
(
value
:
Boolean
?
)
:
Boolean
fun
add
(
value
:
Nothing
?
)
:
Boolean
fun
add
(
value
:
Number
?
)
:
Boolean
fun
add
(
value
:
String
?
)
:
Boolean
add
All
Link copied to clipboard
@
JvmName
(
name
=
"addAllDocuments"
)
fun
addAll
(
value
:
List
<
Document
?
>
)
@
JvmName
(
name
=
"addAllBooleans"
)
fun
addAll
(
value
:
List
<
Boolean
?
>
)
@
JvmName
(
name
=
"addAllNumbers"
)
fun
addAll
(
value
:
List
<
Number
?
>
)
@
JvmName
(
name
=
"addAllStrings"
)
fun
addAll
(
value
:
List
<
String
?
>
)