/*
 * Copyright 2017-2020 original authors
 *
 * Licensed 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
 *
 * https://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.micronaut.core.type;

An Argument with a value.
Author:Graeme Rocher
Type parameters:
  • <V> – The generic value
Since:1.0
/** * An {@link Argument} with a value. * * @param <V> The generic value * @author Graeme Rocher * @since 1.0 */
public interface ArgumentValue<V> extends Argument<V> {
Returns:The current value of the argument
/** * @return The current value of the argument */
V getValue();
Create a new ArgumentValue for the given Argument and value.
Params:
  • argument – The argument
  • value – The value
Type parameters:
  • <T> – The value type
Returns:The created instance
/** * Create a new {@link ArgumentValue} for the given {@link Argument} and value. * * @param argument The argument * @param value The value * @param <T> The value type * @return The created instance */
static <T> ArgumentValue<T> create(Argument<T> argument, T value) { return new DefaultArgumentValue<>(argument, value); } }