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

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

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

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

public static SingleSubst read(final DataInputStream dis, final int offset) throws IOException {
  SingleSubst s = null;
  dis.reset();
  dis.skipBytes(offset);
  final int format = dis.readUnsignedShort();
  if (format == 1) {
    s = new SingleSubstFormat1(dis, offset);
  } else if (format == 2) {
    s = new SingleSubstFormat2(dis, offset);
  }
  return s;
}
origin: org.jogamp.jogl/jogl-all-noawt

public static SingleSubst read(final DataInputStream dis, final int offset) throws IOException {
  SingleSubst s = null;
  dis.reset();
  dis.skipBytes(offset);
  final int format = dis.readUnsignedShort();
  if (format == 1) {
    s = new SingleSubstFormat1(dis, offset);
  } else if (format == 2) {
    s = new SingleSubstFormat2(dis, offset);
  }
  return s;
}
jogamp.graph.font.typecast.ot.tableSingleSubstFormat2

Most used methods

  • <init>
    Creates new SingleSubstFormat2

Popular in Java

  • Finding current android device location
  • putExtra (Intent)
  • setContentView (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • JLabel (javax.swing)
  • Top 17 PhpStorm Plugins
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