blob: f06958e1997e7fbe37a7b3e3ee185308784dcb12 [file] [log] [blame]
/*
* 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.beanutils2;
/**
* {@link ConvertUtilsBean} implementation that delegates {@code convert()}
* 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());}
* </p>
*
* @see BeanUtilsBean2
* @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);
}
}