Tabnine Logo
SingleSubstFormat2.<init>
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using jogamp.graph.font.typecast.ot.table.SingleSubstFormat2.<init> (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<init>

Javadoc

Creates new SingleSubstFormat2

Popular methods of SingleSubstFormat2

    Popular in Java

    • Making http post requests using okhttp
    • getOriginalFilename (MultipartFile)
      Return the original filename in the client's filesystem.This may contain path information depending
    • scheduleAtFixedRate (Timer)
    • scheduleAtFixedRate (ScheduledExecutorService)
    • BorderLayout (java.awt)
      A border layout lays out a container, arranging and resizing its components to fit in five regions:
    • Queue (java.util)
      A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
    • Timer (java.util)
      Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
    • ConcurrentHashMap (java.util.concurrent)
      A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
    • Modifier (javassist)
      The Modifier class provides static methods and constants to decode class and member access modifiers
    • DataSource (javax.sql)
      An interface for the creation of Connection objects which represent a connection to a database. This
    • Best IntelliJ plugins
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

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