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

io.vertx.reactivex.uritemplate.UriTemplate Maven / Gradle / Ivy

/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat 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 io.vertx.reactivex.uritemplate;

import io.vertx.reactivex.RxHelper;
import io.vertx.reactivex.ObservableHelper;
import io.vertx.reactivex.FlowableHelper;
import io.vertx.reactivex.impl.AsyncResultMaybe;
import io.vertx.reactivex.impl.AsyncResultSingle;
import io.vertx.reactivex.impl.AsyncResultCompletable;
import io.vertx.reactivex.WriteStreamObserver;
import io.vertx.reactivex.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;

/**
 * A URI template that follows the rfc6570 level 4.
 *
 * 

A template is immutable and thread safe, it can be safely shared between threads after its creation. * If you are sharing a template as a static variables, keep in mind that {@link io.vertx.reactivex.uritemplate.UriTemplate#of} can fail and create * a classloading issue. * *

* NOTE: This class has been automatically generated from the {@link io.vertx.uritemplate.UriTemplate original} non RX-ified interface using Vert.x codegen. */ @RxGen(io.vertx.uritemplate.UriTemplate.class) public class UriTemplate { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; UriTemplate that = (UriTemplate) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new UriTemplate((io.vertx.uritemplate.UriTemplate) obj), UriTemplate::getDelegate ); private final io.vertx.uritemplate.UriTemplate delegate; public UriTemplate(io.vertx.uritemplate.UriTemplate delegate) { this.delegate = delegate; } public UriTemplate(Object delegate) { this.delegate = (io.vertx.uritemplate.UriTemplate)delegate; } public io.vertx.uritemplate.UriTemplate getDelegate() { return delegate; } /** * Create a template from a string uri. * *

The string uri is validated and parsed, invalid inputs are rejected with a {@link java.lang.IllegalArgumentException}. * @param uri the template string * @return the template */ public static io.vertx.reactivex.uritemplate.UriTemplate of(java.lang.String uri) { io.vertx.reactivex.uritemplate.UriTemplate ret = io.vertx.reactivex.uritemplate.UriTemplate.newInstance((io.vertx.uritemplate.UriTemplate)io.vertx.uritemplate.UriTemplate.of(uri)); return ret; } /** * Expand this template to a string. * @param variables the variables * @return the string expansion of this template with the variables */ public java.lang.String expandToString(io.vertx.reactivex.uritemplate.Variables variables) { java.lang.String ret = delegate.expandToString(variables.getDelegate()); return ret; } /** * Expand this template to a string. * @param variables the variables * @param options the options to control template expansion * @return the string expansion of this template with the variables */ public java.lang.String expandToString(io.vertx.reactivex.uritemplate.Variables variables, io.vertx.uritemplate.ExpandOptions options) { java.lang.String ret = delegate.expandToString(variables.getDelegate(), options); return ret; } public static UriTemplate newInstance(io.vertx.uritemplate.UriTemplate arg) { return arg != null ? new UriTemplate(arg) : null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy