22 lines
637 B
Java
22 lines
637 B
Java
package com.google.android.gms.maps.model;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class Dash extends PatternItem {
|
|
public final float length;
|
|
|
|
public Dash(float f) {
|
|
super(0, Float.valueOf(Math.max(f, BitmapDescriptorFactory.HUE_RED)));
|
|
this.length = Math.max(f, BitmapDescriptorFactory.HUE_RED);
|
|
}
|
|
|
|
@Override // com.google.android.gms.maps.model.PatternItem
|
|
public final String toString() {
|
|
float f = this.length;
|
|
StringBuilder sb = new StringBuilder(30);
|
|
sb.append("[Dash: length=");
|
|
sb.append(f);
|
|
sb.append("]");
|
|
return sb.toString();
|
|
}
|
|
}
|