FileDocCategorySizeDatePackage
Voice.javaAPI DocAndroid 5.1 API1734Sat Mar 14 14:09:36 GMT 2015android.speech.tts

Voice.java

package android.speech.tts;
public class Voice
  implements android.os.Parcelable
{
public  Voice(java.lang.String name, java.util.Locale locale, int quality, int latency, boolean requiresNetworkConnection, java.util.Set<java.lang.String> features) { throw new RuntimeException("Stub!"); }
public  void writeToParcel(android.os.Parcel dest, int flags) { throw new RuntimeException("Stub!"); }
public  int describeContents() { throw new RuntimeException("Stub!"); }
public  java.util.Locale getLocale() { throw new RuntimeException("Stub!"); }
public  int getQuality() { throw new RuntimeException("Stub!"); }
public  int getLatency() { throw new RuntimeException("Stub!"); }
public  boolean isNetworkConnectionRequired() { throw new RuntimeException("Stub!"); }
public  java.lang.String getName() { throw new RuntimeException("Stub!"); }
public  java.util.Set<java.lang.String> getFeatures() { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
public  int hashCode() { throw new RuntimeException("Stub!"); }
public  boolean equals(java.lang.Object obj) { throw new RuntimeException("Stub!"); }
public static final android.os.Parcelable.Creator<android.speech.tts.Voice> CREATOR;
public static final int LATENCY_HIGH = 400;
public static final int LATENCY_LOW = 200;
public static final int LATENCY_NORMAL = 300;
public static final int LATENCY_VERY_HIGH = 500;
public static final int LATENCY_VERY_LOW = 100;
public static final int QUALITY_HIGH = 400;
public static final int QUALITY_LOW = 200;
public static final int QUALITY_NORMAL = 300;
public static final int QUALITY_VERY_HIGH = 500;
public static final int QUALITY_VERY_LOW = 100;
static { CREATOR = null; }
}