/*
 * 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.commons.beanutils;

ConvertUtilsBean implementation that delegates convert() methods to the new ConvertUtilsBean.convert(Object, Class<?>) method.

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

See Also:
Version:$Id$
Since:1.8.0
/** * {@link ConvertUtilsBean} implementation that delegates <code>convert()</code> * methods to the new {@link ConvertUtilsBean#convert(Object, Class)} method. * * <p> * To configure this implementation for the current context ClassLoader invoke * <code>BeanUtilsBean.setInstance(new BeanUtilsBean2());</code> * </p> * * @see BeanUtilsBean2 * @version $Id$ * @since 1.8.0 */
public class ConvertUtilsBean2 extends ConvertUtilsBean {
Delegates to the new ConvertUtilsBean.convert(Object, Class<?>) method.
Params:
  • value – Value to be converted (may be null)
See Also:
Returns:The converted String value or null if value is null
/** * 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 ConvertUtilsBean.convert(Object, Class<?>) method.
Params:
  • value – Value to be converted (may be null)
  • clazz – Java class to be converted to (must not be null)
See Also:
Returns:The converted value or null if value is null
/** * 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 ConvertUtilsBean.convert(Object, Class<?>) method.
Params:
  • value – Array of values to be converted
  • clazz – Java array or element class to be converted to (must not be null)
See Also:
Returns:The converted value
/** * 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); } }