本文整理了Java中antlr.ByteBuffer
类的一些代码示例,展示了ByteBuffer
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ByteBuffer
类的具体详情如下:
包路径:antlr.ByteBuffer
类名称:ByteBuffer
暂无
代码示例来源:origin: jenkinsci/jenkins
public CrontabLexer(InputStream in) {
this(new ByteBuffer(in));
}
public CrontabLexer(Reader in) {
代码示例来源:origin: jenkinsci/jenkins
public LabelExpressionLexer(InputStream in) {
this(new ByteBuffer(in));
}
public LabelExpressionLexer(Reader in) {
代码示例来源:origin: checkstyle/checkstyle
public GeneratedJavaLexer(InputStream in) {
this(new ByteBuffer(in));
}
public GeneratedJavaLexer(Reader in) {
代码示例来源:origin: hibernate/hibernate-orm
public HqlBaseLexer(InputStream in) {
this(new ByteBuffer(in));
}
public HqlBaseLexer(Reader in) {
代码示例来源:origin: hibernate/hibernate-orm
public SqlStatementLexer(InputStream in) {
this(new ByteBuffer(in));
}
public SqlStatementLexer(Reader in) {
代码示例来源:origin: hibernate/hibernate-orm
public GraphLexer(InputStream in) {
this(new ByteBuffer(in));
}
public GraphLexer(Reader in) {
代码示例来源:origin: hibernate/hibernate-orm
public GeneratedOrderByLexer(InputStream in) {
this(new ByteBuffer(in));
}
public GeneratedOrderByLexer(Reader in) {
代码示例来源:origin: apache/geode
public OQLLexer(InputStream in) {
this(new ByteBuffer(in));
}
public OQLLexer(Reader in) {
代码示例来源:origin: apache/cxf
public IDLLexer(InputStream in) {
this(new ByteBuffer(in));
}
public IDLLexer(Reader in) {
代码示例来源:origin: org.jenkins-ci.main/jenkins-core
public LabelExpressionLexer(InputStream in) {
this(new ByteBuffer(in));
}
public LabelExpressionLexer(Reader in) {
代码示例来源:origin: org.apache.directory.api/api-ldap-model
public AntlrSubtreeSpecificationCheckerLexer(InputStream in) {
this(new ByteBuffer(in));
}
public AntlrSubtreeSpecificationCheckerLexer(Reader in) {
代码示例来源:origin: org.apache.directory.shared/shared-ldap
public AntlrSchemaLexer(InputStream in) {
this(new ByteBuffer(in));
}
public AntlrSchemaLexer(Reader in) {
代码示例来源:origin: org.apache.directory.shared/shared-ldap
public AntlrSubtreeSpecificationCheckerLexer(InputStream in) {
this(new ByteBuffer(in));
}
public AntlrSubtreeSpecificationCheckerLexer(Reader in) {
代码示例来源:origin: org.apache.directory.api/api-all
public AntlrACIItemCheckerLexer(InputStream in) {
this(new ByteBuffer(in));
}
public AntlrACIItemCheckerLexer(Reader in) {
代码示例来源:origin: antlr/antlr3
public GroupLexer(InputStream in) {
this(new ByteBuffer(in));
}
public GroupLexer(Reader in) {
代码示例来源:origin: antlr/antlr3
public InterfaceLexer(InputStream in) {
this(new ByteBuffer(in));
}
public InterfaceLexer(Reader in) {
代码示例来源:origin: antlr/antlr3
public AngleBracketTemplateLexer(InputStream in) {
this(new ByteBuffer(in));
}
public AngleBracketTemplateLexer(Reader in) {
代码示例来源:origin: org.intermine/intermine-objectstore
public SqlLexer(InputStream in) {
this(new ByteBuffer(in));
}
public SqlLexer(Reader in) {
代码示例来源:origin: org.glassfish.external/antlr
public PreprocessorLexer(InputStream in) {
this(new ByteBuffer(in));
}
public PreprocessorLexer(Reader in) {
代码示例来源:origin: net.jhorstmann/i18n-gettext-tools
public PluralsLexer(InputStream in) {
this(new ByteBuffer(in));
}
public PluralsLexer(Reader in) {
内容来源于网络,如有侵权,请联系作者删除!