public static interface VsamDetailAttributes.Builder extends SdkPojo, CopyableBuilder<VsamDetailAttributes.Builder,VsamDetailAttributes>
| Modifier and Type | Method and Description |
|---|---|
VsamDetailAttributes.Builder |
alternateKeys(AlternateKey... alternateKeys)
The alternate key definitions, if any.
|
VsamDetailAttributes.Builder |
alternateKeys(Collection<AlternateKey> alternateKeys)
The alternate key definitions, if any.
|
VsamDetailAttributes.Builder |
alternateKeys(Consumer<AlternateKey.Builder>... alternateKeys)
The alternate key definitions, if any.
|
VsamDetailAttributes.Builder |
cacheAtStartup(Boolean cacheAtStartup)
If set to True, enforces loading the data set into cache before it’s used by the application.
|
VsamDetailAttributes.Builder |
compressed(Boolean compressed)
Indicates whether indexes for this dataset are stored as compressed values.
|
VsamDetailAttributes.Builder |
encoding(String encoding)
The character set used by the data set.
|
default VsamDetailAttributes.Builder |
primaryKey(Consumer<PrimaryKey.Builder> primaryKey)
The primary key of the data set.
|
VsamDetailAttributes.Builder |
primaryKey(PrimaryKey primaryKey)
The primary key of the data set.
|
VsamDetailAttributes.Builder |
recordFormat(String recordFormat)
The record format of the data set.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildVsamDetailAttributes.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.VsamDetailAttributes.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.VsamDetailAttributes.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) VsamDetailAttributes.Builder cacheAtStartup(Boolean cacheAtStartup)
If set to True, enforces loading the data set into cache before it’s used by the application.
cacheAtStartup - If set to True, enforces loading the data set into cache before it’s used by the application.VsamDetailAttributes.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.VsamDetailAttributes.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.VsamDetailAttributes.Builder primaryKey(PrimaryKey primaryKey)
The primary key of the data set.
primaryKey - The primary key of the data set.default VsamDetailAttributes.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)VsamDetailAttributes.Builder recordFormat(String recordFormat)
The record format of the data set.
recordFormat - The record format of the data set.Copyright © 2023. All rights reserved.