当前位置: 首页>>代码示例>>Java>>正文


Java Emitable类代码示例

本文整理汇总了Java中org.yaml.snakeyaml.emitter.Emitable的典型用法代码示例。如果您正苦于以下问题:Java Emitable类的具体用法?Java Emitable怎么用?Java Emitable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Emitable类属于org.yaml.snakeyaml.emitter包,在下文中一共展示了Emitable类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: Serializer

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
public Serializer(Serialization serialization, Emitable emitter, Resolver resolver, DumperOptions opts, @Nullable Tag rootTag)
{
    this.serialization = serialization;
    this.emitter = EmitableWrapper.wrap(emitter);
    this.resolver = resolver;
    this.explicitStart = opts.isExplicitStart();
    this.explicitEnd = opts.isExplicitEnd();
    if (opts.getVersion() != null)
    {
        this.useVersion = opts.getVersion();
    }
    this.useTags = opts.getTags();
    this.serializedNodes = new HashSet<>(50);
    this.anchors = new HashMap<>(10);
    this.anchorGenerator = opts.getAnchorGenerator();
    this.closed = null;
    this.explicitRoot = rootTag;
}
 
开发者ID:Diorite,项目名称:Diorite,代码行数:19,代码来源:Serializer.java

示例2: Serializer

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
public Serializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag) {
    this.emitter = emitter;
    this.resolver = resolver;
    this.explicitStart = opts.isExplicitStart();
    this.explicitEnd = opts.isExplicitEnd();
    if (opts.getVersion() != null) {
        this.useVersion = opts.getVersion();
    }
    this.useTags = opts.getTags();
    this.serializedNodes = new HashSet<Node>();
    this.anchors = new HashMap<Node, String>();
    this.anchorGenerator = opts.getAnchorGenerator();
    this.closed = null;
    this.explicitRoot = rootTag;
}
 
开发者ID:imkiva,项目名称:AndroidApktool,代码行数:16,代码来源:Serializer.java

示例3: Serializer

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
public Serializer(Serialization serialization, Emitable emitter, Resolver resolver, DumperOptions opts, @Nullable Tag rootTag)
{
    this.serialization = serialization;
    this.emitter = EmitableWrapper.wrap(emitter);
    this.resolver = resolver;
    this.explicitStart = opts.isExplicitStart();
    this.explicitEnd = opts.isExplicitEnd();
    if (opts.getVersion() != null)
    {
        this.useVersion = opts.getVersion();
    }
    this.useTags = opts.getTags();
    this.serializedNodes = new HashSet<>(50);
    this.anchors = new HashMap<>(10);

    // compatibility
    if (! hasAnchorGenerator)
    {
        this.anchorGenerator = new NumberAnchorGenerator();
    }
    else
    {
        Object anchorGenerator = opts.getAnchorGenerator();
        this.anchorGenerator = ((org.yaml.snakeyaml.serializer.AnchorGenerator) anchorGenerator)::nextAnchor;
    }
    this.closed = null;
    this.explicitRoot = rootTag;
}
 
开发者ID:GotoFinal,项目名称:diorite-configs-java8,代码行数:29,代码来源:Serializer.java

示例4: wrap

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
static EmitableWrapper wrap(Emitable emitable)
{
    if (emitable instanceof EmitableWrapper)
    {
        return (EmitableWrapper) emitable;
    }
    if (emitable instanceof Emitter)
    {
        return new EmitterWrapper((Emitter) emitable);
    }
    return new UnknownEmitableWrapper(emitable);
}
 
开发者ID:GotoFinal,项目名称:diorite-configs-java8,代码行数:13,代码来源:EmitableWrapper.java

示例5: Serializer

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
public Serializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag) {
    this.emitter = emitter;
    this.resolver = resolver;
    this.explicitStart = opts.isExplicitStart();
    this.explicitEnd = opts.isExplicitEnd();
    if (opts.getVersion() != null) {
        this.useVersion = opts.getVersion();
    }
    this.useTags = opts.getTags();
    this.serializedNodes = new HashSet<Node>();
    this.anchors = new HashMap<Node, String>();
    this.lastAnchorId = 0;
    this.closed = null;
    this.explicitRoot = rootTag;
}
 
开发者ID:cuizhennan,项目名称:snakeyaml,代码行数:16,代码来源:Serializer.java

示例6: Serializer

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
public Serializer(final Emitable emitter, final Resolver resolver, final DumperOptions opts, final Tag rootTag) {
	this.emitter = emitter;
	this.resolver = resolver;
	this.explicitStart = opts.isExplicitStart();
	this.explicitEnd = opts.isExplicitEnd();
	if (opts.getVersion() != null) {
		this.useVersion = opts.getVersion();
	}
	this.useTags = opts.getTags();
	this.serializedNodes = new HashSet<Node>();
	this.anchors = new HashMap<Node, String>();
	this.lastAnchorId = 0;
	this.closed = null;
	this.explicitRoot = rootTag;
}
 
开发者ID:OpenNTF,项目名称:org.openntf.domino,代码行数:16,代码来源:Serializer.java

示例7: UnknownEmitableWrapper

import org.yaml.snakeyaml.emitter.Emitable; //导入依赖的package包/类
UnknownEmitableWrapper(Emitable emitable)
{
    this.emitable = emitable;
}
 
开发者ID:GotoFinal,项目名称:diorite-configs-java8,代码行数:5,代码来源:UnknownEmitableWrapper.java


注:本文中的org.yaml.snakeyaml.emitter.Emitable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。