001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.camel.builder;
018
019import org.apache.camel.Expression;
020import org.apache.camel.support.builder.Namespaces;
021
022/**
023 * A builder of expressions or predicates based on values.
024 */
025public class ValueBuilder extends org.apache.camel.support.builder.ValueBuilder {
026
027    public ValueBuilder(Expression expression) {
028        super(expression);
029    }
030
031    // Expression builders
032    // -------------------------------------------------------------------------
033
034    public ValueBuilder tokenizeXML(String tagName, String inheritNamespaceTagName) {
035        Expression newExp = ExpressionBuilder.tokenizeXMLExpression(tagName, inheritNamespaceTagName);
036        return onNewValueBuilder(newExp);
037    }
038
039    public ValueBuilder xtokenize(String path, Namespaces namespaces) {
040        return xtokenize(path, 'i', namespaces);
041    }
042
043    public ValueBuilder xtokenize(String path, char mode, Namespaces namespaces) {
044        Expression newExp = ExpressionBuilder.tokenizeXMLAwareExpression(path, mode, 1, namespaces);
045        return onNewValueBuilder(newExp);
046    }
047
048    public ValueBuilder tokenizePair(String startToken, String endToken, boolean includeTokens) {
049        Expression newExp = ExpressionBuilder.tokenizePairExpression(startToken, endToken, includeTokens);
050        return onNewValueBuilder(newExp);
051    }
052
053    @Override
054    protected ValueBuilder onNewValueBuilder(Expression exp) {
055        return new ValueBuilder(exp);
056    }
057}