Package com.google.maps.routing.v2
Interface RouteLeg.RouteLegLocalizedValuesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RouteLeg.RouteLegLocalizedValues
,RouteLeg.RouteLegLocalizedValues.Builder
- Enclosing class:
- RouteLeg
public static interface RouteLeg.RouteLegLocalizedValuesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.type.LocalizedText
getDistance()
Travel distance represented in text form.com.google.type.LocalizedTextOrBuilder
getDistanceOrBuilder()
Travel distance represented in text form.com.google.type.LocalizedText
getDuration()
Duration taking traffic conditions into consideration represented in text form.com.google.type.LocalizedTextOrBuilder
getDurationOrBuilder()
Duration taking traffic conditions into consideration represented in text form.com.google.type.LocalizedText
getStaticDuration()
Duration without taking traffic conditions into consideration, represented in text form.com.google.type.LocalizedTextOrBuilder
getStaticDurationOrBuilder()
Duration without taking traffic conditions into consideration, represented in text form.boolean
hasDistance()
Travel distance represented in text form.boolean
hasDuration()
Duration taking traffic conditions into consideration represented in text form.boolean
hasStaticDuration()
Duration without taking traffic conditions into consideration, represented in text form.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDistance
boolean hasDistance()
Travel distance represented in text form.
.google.type.LocalizedText distance = 1;
- Returns:
- Whether the distance field is set.
-
getDistance
com.google.type.LocalizedText getDistance()
Travel distance represented in text form.
.google.type.LocalizedText distance = 1;
- Returns:
- The distance.
-
getDistanceOrBuilder
com.google.type.LocalizedTextOrBuilder getDistanceOrBuilder()
Travel distance represented in text form.
.google.type.LocalizedText distance = 1;
-
hasDuration
boolean hasDuration()
Duration taking traffic conditions into consideration represented in text form. Note: If you did not request traffic information, this value will be the same value as static_duration.
.google.type.LocalizedText duration = 2;
- Returns:
- Whether the duration field is set.
-
getDuration
com.google.type.LocalizedText getDuration()
Duration taking traffic conditions into consideration represented in text form. Note: If you did not request traffic information, this value will be the same value as static_duration.
.google.type.LocalizedText duration = 2;
- Returns:
- The duration.
-
getDurationOrBuilder
com.google.type.LocalizedTextOrBuilder getDurationOrBuilder()
Duration taking traffic conditions into consideration represented in text form. Note: If you did not request traffic information, this value will be the same value as static_duration.
.google.type.LocalizedText duration = 2;
-
hasStaticDuration
boolean hasStaticDuration()
Duration without taking traffic conditions into consideration, represented in text form.
.google.type.LocalizedText static_duration = 3;
- Returns:
- Whether the staticDuration field is set.
-
getStaticDuration
com.google.type.LocalizedText getStaticDuration()
Duration without taking traffic conditions into consideration, represented in text form.
.google.type.LocalizedText static_duration = 3;
- Returns:
- The staticDuration.
-
getStaticDurationOrBuilder
com.google.type.LocalizedTextOrBuilder getStaticDurationOrBuilder()
Duration without taking traffic conditions into consideration, represented in text form.
.google.type.LocalizedText static_duration = 3;
-
-