Enum VoiceGuidance.Type
- java.lang.Object
- 
- java.lang.Enum<VoiceGuidance.Type>
- 
- com.esri.arcgisruntime.navigation.VoiceGuidance.Type
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<VoiceGuidance.Type>
 - Enclosing class:
- VoiceGuidance
 
 public static enum VoiceGuidance.Type extends java.lang.Enum<VoiceGuidance.Type> The list ofVoiceGuidancenotification types. Used to determine type of voice guidance notification.- Since:
- 100.6.0
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description APPROACHING_DESTINATIONApproaching destination.APPROACHING_MANEUVERApproaching maneuver.AT_MANEUVERAt maneuver.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static VoiceGuidance.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static VoiceGuidance.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
APPROACHING_MANEUVERpublic static final VoiceGuidance.Type APPROACHING_MANEUVER Approaching maneuver.This guidance notification type is set: - after passing the previous maneuver (In a half mile, Turn right on North Eureka Street)
- 20-30 seconds before next maneuver (Turn right on North Eureka Street)
- 9-10 seconds before next maneuver (Turn right)
 - Since:
- 100.6.0
 
 - 
AT_MANEUVERpublic static final VoiceGuidance.Type AT_MANEUVER At maneuver.Guidance notification set when at maneuver, this type has no text. Can be used to notify user with a sound (e.g. beep) when at maneuver. - Since:
- 100.6.0
 
 - 
APPROACHING_DESTINATIONpublic static final VoiceGuidance.Type APPROACHING_DESTINATION Approaching destination.Guidance notification type set when approaching a destination. Examples: - In 200 feet, the destination is ahead
- You have arrived at 1099 East Hospitality Lane on your right
 - Since:
- 100.6.0
 
 
- 
 - 
Method Detail- 
valuespublic static VoiceGuidance.Type[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VoiceGuidance.Type c : VoiceGuidance.Type.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static VoiceGuidance.Type valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-