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

org.apache.activemq.artemis.shaded.org.apache.commons.beanutils.ConvertUtilsBean2 Maven / Gradle / Ivy

There is a newer version: 2.33.0
Show 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.activemq.artemis.shaded.org.apache.commons.beanutils;

/**
 * {@link ConvertUtilsBean} implementation that delegates convert()
 * methods to the new {@link ConvertUtilsBean#convert(Object, Class)} method.
 *
 * 

* To configure this implementation for the current context ClassLoader invoke * BeanUtilsBean.setInstance(new BeanUtilsBean2()); *

* * @see BeanUtilsBean2 * @version $Id$ * @since 1.8.0 */ public class ConvertUtilsBean2 extends ConvertUtilsBean { /** * Delegates to the new {@link ConvertUtilsBean#convert(Object, Class)} * method. * * @param value Value to be converted (may be null) * @return The converted String value or null if value is null * * @see ConvertUtilsBean#convert(String[], Class) */ @Override public String convert(final Object value) { return (String)convert(value, String.class); } /** * Delegates to the new {@link ConvertUtilsBean#convert(Object, Class)} * method. * * @param value Value to be converted (may be null) * @param clazz Java class to be converted to (must not be null) * @return The converted value or null if value is null * * @see ConvertUtilsBean#convert(String[], Class) */ @Override public Object convert(final String value, final Class clazz) { return convert((Object)value, clazz); } /** * Delegates to the new {@link ConvertUtilsBean#convert(Object, Class)} * method. * * @param value Array of values to be converted * @param clazz Java array or element class to be converted to (must not be null) * @return The converted value * * @see ConvertUtilsBean#convert(String[], Class) */ @Override public Object convert(final String[] value, final Class clazz) { return convert((Object)value, clazz); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy