android.graphics.Typeface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.graphics;
public class Typeface
{
Typeface() { throw new RuntimeException("Stub!"); }
public int getStyle() { throw new RuntimeException("Stub!"); }
public final boolean isBold() { throw new RuntimeException("Stub!"); }
public final boolean isItalic() { throw new RuntimeException("Stub!"); }
public static android.graphics.Typeface create(java.lang.String familyName, int style) { throw new RuntimeException("Stub!"); }
public static android.graphics.Typeface create(android.graphics.Typeface family, int style) { throw new RuntimeException("Stub!"); }
public static android.graphics.Typeface defaultFromStyle(int style) { throw new RuntimeException("Stub!"); }
public static android.graphics.Typeface createFromAsset(android.content.res.AssetManager mgr, java.lang.String path) { throw new RuntimeException("Stub!"); }
public static android.graphics.Typeface createFromFile(java.io.File path) { throw new RuntimeException("Stub!"); }
public static android.graphics.Typeface createFromFile(java.lang.String path) { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); }
public int hashCode() { throw new RuntimeException("Stub!"); }
public static final android.graphics.Typeface DEFAULT;
public static final android.graphics.Typeface DEFAULT_BOLD;
public static final android.graphics.Typeface SANS_SERIF;
public static final android.graphics.Typeface SERIF;
public static final android.graphics.Typeface MONOSPACE;
public static final int NORMAL = 0;
public static final int BOLD = 1;
public static final int ITALIC = 2;
public static final int BOLD_ITALIC = 3;
static { DEFAULT = null; DEFAULT_BOLD = null; SANS_SERIF = null; SERIF = null; MONOSPACE = null; }
}