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

com.xceptance.common.lang.Parameter Maven / Gradle / Ivy

Go to download

XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.

There is a newer version: 8.1.0
Show newest version
/*
 * Copyright (c) 2005-2022 Xceptance Software Technologies GmbH
 *
 * 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
 *
 *     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 com.xceptance.common.lang;

import java.util.ArrayList;
import java.util.List;

/**
 * Reflection fails when the parameter type does not EXACTLY matches the type from the method declaration. For example
 * giving an {@link ArrayList} as parameter type whereas the method declaration contains a {@link List} results in a
 * {@link NoSuchMethodException}. This is a small helper class to overcome these shortcomings of
 * {@link ReflectionUtils#getNewInstance(Class, Object...)}. So it has an a value field and an explicit field for the
 * value class. Due to using generics with the value of being type T and the class being of type ? super T simple errors
 * when setting them will cause compile time errors.
 * 
 * @param T
 *            the type of the value, the class of the value must be of type ? super T
 * @see #valueOf(Object, Class) to get more information
 * @author Sebastian Oerding
 */
public class Parameter
{
    private final Class parameterClass;

    private final T value;

    private Parameter(final T value, final Class declaredParamClass)
    {
        parameterClass = declaredParamClass;
        this.value = value;
    }

    /**
     * Returns a new parameter instance with the arguments as values.
     * 

* Note that the generic type of the returned instance will not be any primitive but the type of the wrapper class * instead. This is due to boxing / unboxing. But it is fine as long as you give the correct class as the second * argument. Take care that you exactly match the classes declared in the method signature or you will not be able * to find the method by using reflection, this also holds true for interfaces used in method declarations! *

* * @param value * the value for the parameter * @param declaredParamClass * the class for the parameter */ public static Parameter valueOf(final T value, final Class declaredParamClass) { return new Parameter(value, declaredParamClass); } Class getDeclaredParameterClass() { return parameterClass; } T getValue() { return value; } @Override public String toString() { final StringBuilder sb = new StringBuilder(); sb.append("Value : "); sb.append(value); sb.append(", declared parameter class : "); sb.append(parameterClass.getName()); return sb.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy