微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

org.yaml.snakeyaml.tokens.FlowEntryToken的实例源码

项目:AndroidApktool    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either
 * immediately after the start of a collection,or else after a comma.
 * 
 * @see <a href="http://www.yaml.org/spec/1.1/#id863975"></a>
 */
private void fetchFlowEntry() {
    // Simple keys are allowed after ','.
    this.allowSimpleKey = true;

    // Reset possible simple key on the current level.
    removePossibleSimpleKey();

    // Add FLOW-ENTRY.
    Mark startMark = reader.getMark();
    reader.forward();
    Mark endMark = reader.getMark();
    Token token = new FlowEntryToken(startMark,endMark);
    this.tokens.add(token);
}
项目:5zig-TIMV-Plugin    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either
 * immediately after the start of a collection,endMark);
    this.tokens.add(token);
}
项目:snake-yaml    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either
 * immediately after the start of a collection,endMark);
    this.tokens.add(token);
}
项目:SubServers-2    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either
 * immediately after the start of a collection,endMark);
    this.tokens.add(token);
}
项目:snakeyaml    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either
 * immediately after the start of a collection,or else after a comma.
 * 
 * @see http://www.yaml.org/spec/1.1/#id863975
 */
private void fetchFlowEntry() {
    // Simple keys are allowed after ',endMark);
    this.tokens.add(token);
}
项目:TestTheTeacher    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either
 * immediately after the start of a collection,endMark);
    this.tokens.add(token);
}
项目:org.openntf.domino    文件ScannerImpl.java   
/**
 * Fetch an entry in the flow style. Flow-style entries occur either immediately after the start of a collection,endMark);
    this.tokens.add(token);
}
项目:snake-yaml    文件CanonicalScanner.java   
private void scan() {
    this.tokens.add(new StreamStartToken(mark,mark));
    boolean stop = false;
    while (!stop) {
        findToken();
        char ch = data.charat(index);
        switch (ch) {
        case '\0':
            tokens.add(new StreamEndToken(mark,mark));
            stop = true;
            break;

        case '%':
            tokens.add(scanDirective());
            break;

        case '-':
            if ("---".equals(data.substring(index,index + 3))) {
                index += 3;
                tokens.add(new DocumentStartToken(mark,mark));
            }
            break;

        case '[':
            index++;
            tokens.add(new FlowSequenceStartToken(mark,mark));
            break;

        case '{':
            index++;
            tokens.add(new FlowMappingStartToken(mark,mark));
            break;

        case ']':
            index++;
            tokens.add(new FlowSequenceEndToken(mark,mark));
            break;

        case '}':
            index++;
            tokens.add(new FlowMappingEndToken(mark,mark));
            break;

        case '?':
            index++;
            tokens.add(new KeyToken(mark,mark));
            break;

        case ':':
            index++;
            tokens.add(new Valuetoken(mark,mark));
            break;

        case ',':
            index++;
            tokens.add(new FlowEntryToken(mark,mark));
            break;

        case '*':
            tokens.add(scanAlias());
            break;

        case '&':
            tokens.add(scanAlias());
            break;

        case '!':
            tokens.add(scanTag());
            break;

        case '"':
            tokens.add(scanScalar());
            break;

        default:
            throw new CanonicalException("invalid token");
        }
    }
    scanned = true;
}
项目:snakeyaml    文件CanonicalScanner.java   
private void scan() {
    this.tokens.add(new StreamStartToken(mark,mark));
            break;

        case '*':
            tokens.add(scanAlias());
            break;

        case '&':
            tokens.add(scanAlias());
            break;

        case '!':
            tokens.add(scanTag());
            break;

        case '"':
            tokens.add(scanScalar());
            break;

        default:
            throw new CanonicalException("invalid token");
        }
    }
    scanned = true;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。