Class RasterDataSourceConfigurationUpdate
- Last UpdatedMay 13, 2025
- 2 minute read
- java.lang.Object
-
- com.here.sdk.mapview.datasource.RasterDataSourceConfigurationUpdate
-
public final class RasterDataSourceConfigurationUpdate extends java.lang.Object
Configuration update for a RasterDataSource.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Long
cacheDiskSize
Optional update of the cache disk size, in bytes.java.lang.Boolean
ignoreExpiredData
Optional update of the flag indicating whether expired data should be ignored until refreshed.java.util.Map<java.lang.String,java.lang.String>
providerHeaders
Optional update of the provider headers.
-
Constructor Summary
Constructors Constructor Description RasterDataSourceConfigurationUpdate(java.util.Map<java.lang.String,java.lang.String> providerHeaders, java.lang.Boolean ignoreExpiredData, java.lang.Long cacheDiskSize)
Creates a new instance.
-
-
-
Field Detail
-
providerHeaders
@Nullable public java.util.Map<java.lang.String,java.lang.String> providerHeaders
Optional update of the provider headers. The new list replaces the current one. When not set, no change is made to the current list.
-
ignoreExpiredData
@Nullable public java.lang.Boolean ignoreExpiredData
Optional update of the flag indicating whether expired data should be ignored until refreshed. When not set, no change is made to the current flag state.
-
cacheDiskSize
@Nullable public java.lang.Long cacheDiskSize
Optional update of the cache disk size, in bytes. When not set, no change is made to the current value.
-
-
Constructor Detail
-
RasterDataSourceConfigurationUpdate
public RasterDataSourceConfigurationUpdate(@Nullable java.util.Map<java.lang.String,java.lang.String> providerHeaders, @Nullable java.lang.Boolean ignoreExpiredData, @Nullable java.lang.Long cacheDiskSize)
Creates a new instance.
- Parameters:
providerHeaders
-Optional update of the provider headers. The new list replaces the current one. When not set, no change is made to the current list.
ignoreExpiredData
-Optional update of the flag indicating whether expired data should be ignored until refreshed. When not set, no change is made to the current flag state.
cacheDiskSize
-Optional update of the cache disk size, in bytes. When not set, no change is made to the current value.
-
-