congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
KernSubtableFormat2
Code IndexAdd Tabnine to your IDE (free)

How to use
KernSubtableFormat2
in
jogamp.graph.font.typecast.ot.table

Best Java code snippets using jogamp.graph.font.typecast.ot.table.KernSubtableFormat2 (Showing top 2 results out of 315)

origin: ch.unibas.cs.gravis/scalismo-native-stub

public static KernSubtable read(final DataInput di) throws IOException {
  KernSubtable table = null;
  /* final int version = */ di.readUnsignedShort();
  /* final int length = */ di.readUnsignedShort();
  final int coverage = di.readUnsignedShort();
  final int format = coverage >> 8;
  switch (format) {
  case 0:
    table = new KernSubtableFormat0(di);
    break;
  case 2:
    table = new KernSubtableFormat2(di);
    break;
  default:
    break;
  }
  return table;
}
origin: org.jogamp.jogl/jogl-all-noawt

public static KernSubtable read(final DataInput di) throws IOException {
  KernSubtable table = null;
  /* final int version = */ di.readUnsignedShort();
  /* final int length = */ di.readUnsignedShort();
  final int coverage = di.readUnsignedShort();
  final int format = coverage >> 8;
  switch (format) {
  case 0:
    table = new KernSubtableFormat0(di);
    break;
  case 2:
    table = new KernSubtableFormat2(di);
    break;
  default:
    break;
  }
  return table;
}
jogamp.graph.font.typecast.ot.tableKernSubtableFormat2

Most used methods

  • <init>
    Creates new KernSubtableFormat2

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • getExternalFilesDir (Context)
  • findViewById (Activity)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Runner (org.openjdk.jmh.runner)
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now