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;
}

相关文章

买水果
比较全面的redis工具类
gson 反序列化到多态子类
java 版本的 mb_strwidth
JAVA 反转字符串的最快方法,大概比StringBuffer.reverse()性...
com.google.gson.internal.bind.ArrayTypeAdapter的实例源码...