public static interface VsamAttributes.Builder extends SdkPojo, CopyableBuilder<VsamAttributes.Builder,VsamAttributes>
| Modifier and Type | Method and Description |
|---|---|
VsamAttributes.Builder |
alternateKeys(AlternateKey... alternateKeys)
The alternate key definitions, if any.
|
VsamAttributes.Builder |
alternateKeys(Collection<AlternateKey> alternateKeys)
The alternate key definitions, if any.
|
VsamAttributes.Builder |
alternateKeys(Consumer<AlternateKey.Builder>... alternateKeys)
The alternate key definitions, if any.
|
VsamAttributes.Builder |
compressed(Boolean compressed)
Indicates whether indexes for this dataset are stored as compressed values.
|
VsamAttributes.Builder |
encoding(String encoding)
The character set used by the data set.
|
VsamAttributes.Builder |
format(String format)
The record format of the data set.
|
default VsamAttributes.Builder |
primaryKey(Consumer<PrimaryKey.Builder> primaryKey)
The primary key of the data set.
|
VsamAttributes.Builder |
primaryKey(PrimaryKey primaryKey)
The primary key of the data set.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildVsamAttributes.Builder alternateKeys(Collection<AlternateKey> alternateKeys)
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
alternateKeys - The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but
if those alternate keys definitions exist, provide them as some applications will make use of them.VsamAttributes.Builder alternateKeys(AlternateKey... alternateKeys)
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
alternateKeys - The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but
if those alternate keys definitions exist, provide them as some applications will make use of them.VsamAttributes.Builder alternateKeys(Consumer<AlternateKey.Builder>... alternateKeys)
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
This is a convenience method that creates an instance of theAlternateKey.Builder avoiding the need to create one
manually via AlternateKey.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and its
result is passed to #alternateKeys(List.
alternateKeys - a consumer that will call methods on
AlternateKey.Builder#alternateKeys(java.util.Collection) VsamAttributes.Builder compressed(Boolean compressed)
Indicates whether indexes for this dataset are stored as compressed values. If you have a large data set (typically > 100 Mb), consider setting this flag to True.
compressed - Indicates whether indexes for this dataset are stored as compressed values. If you have a large data
set (typically > 100 Mb), consider setting this flag to True.VsamAttributes.Builder encoding(String encoding)
The character set used by the data set. Can be ASCII, EBCDIC, or unknown.
encoding - The character set used by the data set. Can be ASCII, EBCDIC, or unknown.VsamAttributes.Builder format(String format)
The record format of the data set.
format - The record format of the data set.VsamAttributes.Builder primaryKey(PrimaryKey primaryKey)
The primary key of the data set.
primaryKey - The primary key of the data set.default VsamAttributes.Builder primaryKey(Consumer<PrimaryKey.Builder> primaryKey)
The primary key of the data set.
This is a convenience method that creates an instance of thePrimaryKey.Builder avoiding the need to
create one manually via PrimaryKey.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to primaryKey(PrimaryKey).
primaryKey - a consumer that will call methods on PrimaryKey.BuilderprimaryKey(PrimaryKey)Copyright © 2023. All rights reserved.