Class AppLayerSettings
- java.lang.Object
-
- nl.b3p.tailormap.api.persistence.json.AppLayerSettings
-
- All Implemented Interfaces:
Serializable
@Generated("org.openapitools.codegen.languages.SpringCodegen") public class AppLayerSettings extends Object implements SerializableAppLayerSettings- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AppLayerSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppLayerSettingsaddHideAttributesItem(String hideAttributesItem)AppLayerSettingsaddReadOnlyAttributesItem(String readOnlyAttributesItem)AppLayerSettingsattribution(String attribution)AppLayerSettingsdescription(String description)AppLayerSettingseditable(Boolean editable)booleanequals(Object o)StringgetAttribution()Attribution to show for this layer.StringgetDescription()Description to show for this layer.BooleangetEditable()Get editableList<String>getHideAttributes()List of attribute names that should be hidden (in addition to attributes already hidden by the feature type settings).IntegergetOpacity()Get opacityList<String>getReadOnlyAttributes()List of feature type attribute names that are not editable (in addition to read only attributes from the feature type settings).StringgetTitle()Get titleinthashCode()AppLayerSettingshideAttributes(List<String> hideAttributes)AppLayerSettingsopacity(Integer opacity)AppLayerSettingsreadOnlyAttributes(List<String> readOnlyAttributes)voidsetAttribution(String attribution)voidsetDescription(String description)voidsetEditable(Boolean editable)voidsetHideAttributes(List<String> hideAttributes)voidsetOpacity(Integer opacity)voidsetReadOnlyAttributes(List<String> readOnlyAttributes)voidsetTitle(String title)AppLayerSettingstitle(String title)StringtoString()
-
-
-
Method Detail
-
title
public AppLayerSettings title(String title)
-
getTitle
public String getTitle()
Get title- Returns:
- title
-
setTitle
public void setTitle(String title)
-
opacity
public AppLayerSettings opacity(Integer opacity)
-
getOpacity
public Integer getOpacity()
Get opacity- Returns:
- opacity
-
setOpacity
public void setOpacity(Integer opacity)
-
attribution
public AppLayerSettings attribution(String attribution)
-
getAttribution
public String getAttribution()
Attribution to show for this layer.- Returns:
- attribution
-
setAttribution
public void setAttribution(String attribution)
-
description
public AppLayerSettings description(String description)
-
getDescription
public String getDescription()
Description to show for this layer.- Returns:
- description
-
setDescription
public void setDescription(String description)
-
editable
public AppLayerSettings editable(Boolean editable)
-
getEditable
public Boolean getEditable()
Get editable- Returns:
- editable
-
setEditable
public void setEditable(Boolean editable)
-
hideAttributes
public AppLayerSettings hideAttributes(List<String> hideAttributes)
-
addHideAttributesItem
public AppLayerSettings addHideAttributesItem(String hideAttributesItem)
-
getHideAttributes
public List<String> getHideAttributes()
List of attribute names that should be hidden (in addition to attributes already hidden by the feature type settings).- Returns:
- hideAttributes
-
readOnlyAttributes
public AppLayerSettings readOnlyAttributes(List<String> readOnlyAttributes)
-
addReadOnlyAttributesItem
public AppLayerSettings addReadOnlyAttributesItem(String readOnlyAttributesItem)
-
getReadOnlyAttributes
public List<String> getReadOnlyAttributes()
List of feature type attribute names that are not editable (in addition to read only attributes from the feature type settings).- Returns:
- readOnlyAttributes
-
-