@@ -3832,19 +3832,6 @@ public void setInitialClusterManagers(@NonNull List<PlatformClusterManager> sett
3832
3832
this .initialClusterManagers = setterArg ;
3833
3833
}
3834
3834
3835
- private @ NonNull PlatformMarkerType markerType ;
3836
-
3837
- public @ NonNull PlatformMarkerType getMarkerType () {
3838
- return markerType ;
3839
- }
3840
-
3841
- public void setMarkerType (@ NonNull PlatformMarkerType setterArg ) {
3842
- if (setterArg == null ) {
3843
- throw new IllegalStateException ("Nonnull field \" markerType\" is null." );
3844
- }
3845
- this .markerType = setterArg ;
3846
- }
3847
-
3848
3835
/** Constructor is non-public to enforce null safety; use Builder. */
3849
3836
PlatformMapViewCreationParams () {}
3850
3837
@@ -3853,12 +3840,12 @@ public boolean equals(Object o) {
3853
3840
if (this == o ) { return true ; }
3854
3841
if (o == null || getClass () != o .getClass ()) { return false ; }
3855
3842
PlatformMapViewCreationParams that = (PlatformMapViewCreationParams ) o ;
3856
- return initialCameraPosition .equals (that .initialCameraPosition ) && mapConfiguration .equals (that .mapConfiguration ) && initialCircles .equals (that .initialCircles ) && initialMarkers .equals (that .initialMarkers ) && initialPolygons .equals (that .initialPolygons ) && initialPolylines .equals (that .initialPolylines ) && initialHeatmaps .equals (that .initialHeatmaps ) && initialTileOverlays .equals (that .initialTileOverlays ) && initialClusterManagers .equals (that .initialClusterManagers ) && markerType . equals ( that . markerType ) ;
3843
+ return initialCameraPosition .equals (that .initialCameraPosition ) && mapConfiguration .equals (that .mapConfiguration ) && initialCircles .equals (that .initialCircles ) && initialMarkers .equals (that .initialMarkers ) && initialPolygons .equals (that .initialPolygons ) && initialPolylines .equals (that .initialPolylines ) && initialHeatmaps .equals (that .initialHeatmaps ) && initialTileOverlays .equals (that .initialTileOverlays ) && initialClusterManagers .equals (that .initialClusterManagers );
3857
3844
}
3858
3845
3859
3846
@ Override
3860
3847
public int hashCode () {
3861
- return Objects .hash (initialCameraPosition , mapConfiguration , initialCircles , initialMarkers , initialPolygons , initialPolylines , initialHeatmaps , initialTileOverlays , initialClusterManagers , markerType );
3848
+ return Objects .hash (initialCameraPosition , mapConfiguration , initialCircles , initialMarkers , initialPolygons , initialPolylines , initialHeatmaps , initialTileOverlays , initialClusterManagers );
3862
3849
}
3863
3850
3864
3851
public static final class Builder {
@@ -3935,14 +3922,6 @@ public static final class Builder {
3935
3922
return this ;
3936
3923
}
3937
3924
3938
- private @ Nullable PlatformMarkerType markerType ;
3939
-
3940
- @ CanIgnoreReturnValue
3941
- public @ NonNull Builder setMarkerType (@ NonNull PlatformMarkerType setterArg ) {
3942
- this .markerType = setterArg ;
3943
- return this ;
3944
- }
3945
-
3946
3925
public @ NonNull PlatformMapViewCreationParams build () {
3947
3926
PlatformMapViewCreationParams pigeonReturn = new PlatformMapViewCreationParams ();
3948
3927
pigeonReturn .setInitialCameraPosition (initialCameraPosition );
@@ -3954,14 +3933,13 @@ public static final class Builder {
3954
3933
pigeonReturn .setInitialHeatmaps (initialHeatmaps );
3955
3934
pigeonReturn .setInitialTileOverlays (initialTileOverlays );
3956
3935
pigeonReturn .setInitialClusterManagers (initialClusterManagers );
3957
- pigeonReturn .setMarkerType (markerType );
3958
3936
return pigeonReturn ;
3959
3937
}
3960
3938
}
3961
3939
3962
3940
@ NonNull
3963
3941
ArrayList <Object > toList () {
3964
- ArrayList <Object > toListResult = new ArrayList <>(10 );
3942
+ ArrayList <Object > toListResult = new ArrayList <>(9 );
3965
3943
toListResult .add (initialCameraPosition );
3966
3944
toListResult .add (mapConfiguration );
3967
3945
toListResult .add (initialCircles );
@@ -3971,7 +3949,6 @@ ArrayList<Object> toList() {
3971
3949
toListResult .add (initialHeatmaps );
3972
3950
toListResult .add (initialTileOverlays );
3973
3951
toListResult .add (initialClusterManagers );
3974
- toListResult .add (markerType );
3975
3952
return toListResult ;
3976
3953
}
3977
3954
@@ -3995,8 +3972,6 @@ ArrayList<Object> toList() {
3995
3972
pigeonResult .setInitialTileOverlays ((List <PlatformTileOverlay >) initialTileOverlays );
3996
3973
Object initialClusterManagers = pigeonVar_list .get (8 );
3997
3974
pigeonResult .setInitialClusterManagers ((List <PlatformClusterManager >) initialClusterManagers );
3998
- Object markerType = pigeonVar_list .get (9 );
3999
- pigeonResult .setMarkerType ((PlatformMarkerType ) markerType );
4000
3975
return pigeonResult ;
4001
3976
}
4002
3977
}
@@ -4187,6 +4162,16 @@ public void setLiteModeEnabled(@Nullable Boolean setterArg) {
4187
4162
this .liteModeEnabled = setterArg ;
4188
4163
}
4189
4164
4165
+ private @ Nullable PlatformMarkerType markerType ;
4166
+
4167
+ public @ Nullable PlatformMarkerType getMarkerType () {
4168
+ return markerType ;
4169
+ }
4170
+
4171
+ public void setMarkerType (@ Nullable PlatformMarkerType setterArg ) {
4172
+ this .markerType = setterArg ;
4173
+ }
4174
+
4190
4175
private @ Nullable String mapId ;
4191
4176
4192
4177
public @ Nullable String getMapId () {
@@ -4212,12 +4197,12 @@ public boolean equals(Object o) {
4212
4197
if (this == o ) { return true ; }
4213
4198
if (o == null || getClass () != o .getClass ()) { return false ; }
4214
4199
PlatformMapConfiguration that = (PlatformMapConfiguration ) o ;
4215
- return Objects .equals (compassEnabled , that .compassEnabled ) && Objects .equals (cameraTargetBounds , that .cameraTargetBounds ) && Objects .equals (mapType , that .mapType ) && Objects .equals (minMaxZoomPreference , that .minMaxZoomPreference ) && Objects .equals (mapToolbarEnabled , that .mapToolbarEnabled ) && Objects .equals (rotateGesturesEnabled , that .rotateGesturesEnabled ) && Objects .equals (scrollGesturesEnabled , that .scrollGesturesEnabled ) && Objects .equals (tiltGesturesEnabled , that .tiltGesturesEnabled ) && Objects .equals (trackCameraPosition , that .trackCameraPosition ) && Objects .equals (zoomControlsEnabled , that .zoomControlsEnabled ) && Objects .equals (zoomGesturesEnabled , that .zoomGesturesEnabled ) && Objects .equals (myLocationEnabled , that .myLocationEnabled ) && Objects .equals (myLocationButtonEnabled , that .myLocationButtonEnabled ) && Objects .equals (padding , that .padding ) && Objects .equals (indoorViewEnabled , that .indoorViewEnabled ) && Objects .equals (trafficEnabled , that .trafficEnabled ) && Objects .equals (buildingsEnabled , that .buildingsEnabled ) && Objects .equals (liteModeEnabled , that .liteModeEnabled ) && Objects .equals (mapId , that .mapId ) && Objects .equals (style , that .style );
4200
+ return Objects .equals (compassEnabled , that .compassEnabled ) && Objects .equals (cameraTargetBounds , that .cameraTargetBounds ) && Objects .equals (mapType , that .mapType ) && Objects .equals (minMaxZoomPreference , that .minMaxZoomPreference ) && Objects .equals (mapToolbarEnabled , that .mapToolbarEnabled ) && Objects .equals (rotateGesturesEnabled , that .rotateGesturesEnabled ) && Objects .equals (scrollGesturesEnabled , that .scrollGesturesEnabled ) && Objects .equals (tiltGesturesEnabled , that .tiltGesturesEnabled ) && Objects .equals (trackCameraPosition , that .trackCameraPosition ) && Objects .equals (zoomControlsEnabled , that .zoomControlsEnabled ) && Objects .equals (zoomGesturesEnabled , that .zoomGesturesEnabled ) && Objects .equals (myLocationEnabled , that .myLocationEnabled ) && Objects .equals (myLocationButtonEnabled , that .myLocationButtonEnabled ) && Objects .equals (padding , that .padding ) && Objects .equals (indoorViewEnabled , that .indoorViewEnabled ) && Objects .equals (trafficEnabled , that .trafficEnabled ) && Objects .equals (buildingsEnabled , that .buildingsEnabled ) && Objects .equals (liteModeEnabled , that .liteModeEnabled ) && Objects .equals (markerType , that .markerType ) && Objects .equals (mapId , that .mapId ) && Objects .equals (style , that .style );
4216
4201
}
4217
4202
4218
4203
@ Override
4219
4204
public int hashCode () {
4220
- return Objects .hash (compassEnabled , cameraTargetBounds , mapType , minMaxZoomPreference , mapToolbarEnabled , rotateGesturesEnabled , scrollGesturesEnabled , tiltGesturesEnabled , trackCameraPosition , zoomControlsEnabled , zoomGesturesEnabled , myLocationEnabled , myLocationButtonEnabled , padding , indoorViewEnabled , trafficEnabled , buildingsEnabled , liteModeEnabled , mapId , style );
4205
+ return Objects .hash (compassEnabled , cameraTargetBounds , mapType , minMaxZoomPreference , mapToolbarEnabled , rotateGesturesEnabled , scrollGesturesEnabled , tiltGesturesEnabled , trackCameraPosition , zoomControlsEnabled , zoomGesturesEnabled , myLocationEnabled , myLocationButtonEnabled , padding , indoorViewEnabled , trafficEnabled , buildingsEnabled , liteModeEnabled , markerType , mapId , style );
4221
4206
}
4222
4207
4223
4208
public static final class Builder {
@@ -4366,6 +4351,14 @@ public static final class Builder {
4366
4351
return this ;
4367
4352
}
4368
4353
4354
+ private @ Nullable PlatformMarkerType markerType ;
4355
+
4356
+ @ CanIgnoreReturnValue
4357
+ public @ NonNull Builder setMarkerType (@ Nullable PlatformMarkerType setterArg ) {
4358
+ this .markerType = setterArg ;
4359
+ return this ;
4360
+ }
4361
+
4369
4362
private @ Nullable String mapId ;
4370
4363
4371
4364
@ CanIgnoreReturnValue
@@ -4402,6 +4395,7 @@ public static final class Builder {
4402
4395
pigeonReturn .setTrafficEnabled (trafficEnabled );
4403
4396
pigeonReturn .setBuildingsEnabled (buildingsEnabled );
4404
4397
pigeonReturn .setLiteModeEnabled (liteModeEnabled );
4398
+ pigeonReturn .setMarkerType (markerType );
4405
4399
pigeonReturn .setMapId (mapId );
4406
4400
pigeonReturn .setStyle (style );
4407
4401
return pigeonReturn ;
@@ -4410,7 +4404,7 @@ public static final class Builder {
4410
4404
4411
4405
@ NonNull
4412
4406
ArrayList <Object > toList () {
4413
- ArrayList <Object > toListResult = new ArrayList <>(20 );
4407
+ ArrayList <Object > toListResult = new ArrayList <>(21 );
4414
4408
toListResult .add (compassEnabled );
4415
4409
toListResult .add (cameraTargetBounds );
4416
4410
toListResult .add (mapType );
@@ -4429,6 +4423,7 @@ ArrayList<Object> toList() {
4429
4423
toListResult .add (trafficEnabled );
4430
4424
toListResult .add (buildingsEnabled );
4431
4425
toListResult .add (liteModeEnabled );
4426
+ toListResult .add (markerType );
4432
4427
toListResult .add (mapId );
4433
4428
toListResult .add (style );
4434
4429
return toListResult ;
@@ -4472,9 +4467,11 @@ ArrayList<Object> toList() {
4472
4467
pigeonResult .setBuildingsEnabled ((Boolean ) buildingsEnabled );
4473
4468
Object liteModeEnabled = pigeonVar_list .get (17 );
4474
4469
pigeonResult .setLiteModeEnabled ((Boolean ) liteModeEnabled );
4475
- Object mapId = pigeonVar_list .get (18 );
4470
+ Object markerType = pigeonVar_list .get (18 );
4471
+ pigeonResult .setMarkerType ((PlatformMarkerType ) markerType );
4472
+ Object mapId = pigeonVar_list .get (19 );
4476
4473
pigeonResult .setMapId ((String ) mapId );
4477
- Object style = pigeonVar_list .get (19 );
4474
+ Object style = pigeonVar_list .get (20 );
4478
4475
pigeonResult .setStyle ((String ) style );
4479
4476
return pigeonResult ;
4480
4477
}
0 commit comments