All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.parser.ParserResult Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.camel.parser;

/**
 * Result of parsing Camel RouteBuilder or XML routes from the source code.
 */
public class ParserResult {

    private final String node;
    private boolean parsed;
    private int position;
    private int length;
    private String element;
    private Boolean predicate;

    public ParserResult(String node, int position, int length, String element) {
        this(node, position, length, element, true);
    }

    public ParserResult(String node, int position, int length, String element, boolean parsed) {
        this.node = node;
        this.position = position;
        this.length = length;
        this.element = element;
        this.parsed = parsed;
    }

    /**
     * Character based position in the source code (not line based).
     */
    public int getPosition() {
        return position;
    }

    /**
     * Length of node in the source code (not line based).
     */
    public int getLength() {
        return length;
    }

    /**
     * The element such as a Camel endpoint uri
     */
    public String getElement() {
        return element;
    }

    /**
     * Whether the element was successfully parsed. If the parser cannot parse the element for whatever reason this will
     * return false.
     */
    public boolean isParsed() {
        return parsed;
    }

    /**
     * The node which is typically a Camel EIP name such as to, wireTap etc.
     */
    public String getNode() {
        return node;
    }

    public Boolean getPredicate() {
        return predicate;
    }

    /**
     * Tells if it was an expression which is intended to be used as a predicate (determined from camel-core mode)
     */
    public void setPredicate(Boolean predicate) {
        this.predicate = predicate;
    }

    @Override
    public String toString() {
        return element;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy