Package com.oracle.bmc.datasafe.model
Class Column.Builder
- java.lang.Object
-
- com.oracle.bmc.datasafe.model.Column.Builder
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Columnbuild()Column.Buildercopy(Column model)Column.BuilderdataType(String dataType)Specifies the data type of the column.Column.BuilderdisplayName(String displayName)Name of the column displayed on UI.Column.BuilderdisplayOrder(Integer displayOrder)Specifies the display order of the column.Column.BuilderfieldName(String fieldName)Specifies the corresponding field name in the data source.Column.BuilderisHidden(Boolean isHidden)Indicates if the column is hidden.
-
-
-
Method Detail
-
displayName
public Column.Builder displayName(String displayName)
Name of the column displayed on UI.- Parameters:
displayName- the value to set- Returns:
- this builder
-
fieldName
public Column.Builder fieldName(String fieldName)
Specifies the corresponding field name in the data source.- Parameters:
fieldName- the value to set- Returns:
- this builder
-
dataType
public Column.Builder dataType(String dataType)
Specifies the data type of the column.- Parameters:
dataType- the value to set- Returns:
- this builder
-
isHidden
public Column.Builder isHidden(Boolean isHidden)
Indicates if the column is hidden.Values can either be ‘true’ or ‘false’.
- Parameters:
isHidden- the value to set- Returns:
- this builder
-
displayOrder
public Column.Builder displayOrder(Integer displayOrder)
Specifies the display order of the column.- Parameters:
displayOrder- the value to set- Returns:
- this builder
-
build
public Column build()
-
copy
public Column.Builder copy(Column model)
-
-