本文整理汇总了Java中org.apache.commons.beanutils.PropertyUtils.isWriteable方法的典型用法代码示例。如果您正苦于以下问题:Java PropertyUtils.isWriteable方法的具体用法?Java PropertyUtils.isWriteable怎么用?Java PropertyUtils.isWriteable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.beanutils.PropertyUtils
的用法示例。
在下文中一共展示了PropertyUtils.isWriteable方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setSiteOptionProperty
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public void setSiteOptionProperty(String property, Object value)
throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
if (PropertyUtils.isWriteable(this, property)) {
switch (PropertyUtils
.getPropertyDescriptor(this, property).getPropertyType().getSimpleName()) {
case OPTION_VALUE_TYPE_BOOLEAN:
value = Boolean.valueOf(value.toString());
break;
case OPTION_VALUE_TYPE_INTEGER:
value = Integer.parseInt(value.toString());
break;
case OPTION_VALUE_TYPE_USERREGISTRATION:
value = UserRegistration.valueOf(value.toString());
break;
default:
break;
}
PropertyUtils.setProperty(this, property, value);
}
}
示例2: copyBeanNotNull2Bean
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
* 对象拷贝 数据对象空值不拷贝到目标对象
*
* @param databean 待拷贝对象
* @param tobean 目标对象
* @throws NoSuchMethodException
*/
public static void copyBeanNotNull2Bean(Object databean, Object tobean) throws Exception {
PropertyDescriptor origDescriptors[] = PropertyUtils.getPropertyDescriptors(databean);
for (int i = 0; i < origDescriptors.length; i++) {
String name = origDescriptors[i].getName();
// String type = origDescriptors[i].getPropertyType().toString();
if ("class".equals(name)) {
continue; // No point in trying to set an object's class
}
if (PropertyUtils.isReadable(databean, name) && PropertyUtils.isWriteable(tobean, name)) {
try {
Object value = PropertyUtils.getSimpleProperty(databean, name);
if (value != null) {
getInstance().setSimpleProperty(tobean, name, value);
}
} catch (java.lang.IllegalArgumentException ie) {
; // Should not happen
} catch (Exception e) {
; // Should not happen
}
}
}
}
示例3: put
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public default Object put(String key, Object value) {
try {
if (key.equals("id") || key.equals("lastModifiedMillis") && !(value instanceof Long)) {
if (value instanceof Double) {
value = ((Double) value).longValue();
} else if (value instanceof Integer) {
value = ((Integer) value).longValue();
} else if (value instanceof Float) {
value = ((Float) value).longValue();
} else if (value instanceof BigInteger) {
value = ((BigInteger) value).longValue();
}
}
if (PropertyUtils.isWriteable(this, key)) {
Class cls = null;
if (value != null) {
cls = value.getClass();
}
PropertyUtils.setProperty(this, key, value);
return null;
} else {
return getAttributes().put(key, value);
}
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
示例4: setField
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public static void setField(Object obj, String fieldName, Object fieldValue) {
try {
if (PropertyUtils.isWriteable(obj, fieldName)) {
PropertyUtils.setProperty(obj, fieldName, fieldValue);
}
} catch (Exception e) {
logger.error("设置成员变量出错!", e);
throw new RuntimeException(e);
}
}
示例5: copyProperties
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public void copyProperties(Object dest, Object orig) throws IllegalAccessException, InvocationTargetException {
PropertyDescriptor[] origDescriptors =
PropertyUtils.getPropertyDescriptors(orig);
for (PropertyDescriptor origDescriptor : origDescriptors) {
String name = origDescriptor.getName();
if ("class".equals(name)) {
continue; // No point in trying to set an object's class
}
if (PropertyUtils.isReadable(orig, name) &&
PropertyUtils.isWriteable(dest, name)) {
try {
Class origPropClass = PropertyUtils.getPropertyType(orig, name);
Class destPropClass = PropertyUtils.getPropertyType(dest, name);
if (destPropClass.isAssignableFrom(origPropClass)) {
Object value =
PropertyUtils.getSimpleProperty(orig, name);
BeanUtils.copyProperty(dest, name, value);
}
} catch (NoSuchMethodException e) {
// Should not happen
}
}
}
}
示例6: setField
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
* 设置成员变量
*/
public static void setField(Object obj, String fieldName, Object fieldValue) {
try {
if (PropertyUtils.isWriteable(obj, fieldName)) {
PropertyUtils.setProperty(obj, fieldName, fieldValue);
}
} catch (Exception e) {
logger.error("设置成员变量出错!", e);
throw new RuntimeException(e);
}
}
示例7: overrideTransformationOptions
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
* Sets any transformation option overrides it can.
*/
private void overrideTransformationOptions(TransformationOptions options)
{
// Set any transformation options overrides if we can
if(options != null && transformationOptionOverrides != null)
{
for(String key : transformationOptionOverrides.keySet())
{
if(PropertyUtils.isWriteable(options, key))
{
try
{
PropertyDescriptor pd = PropertyUtils.getPropertyDescriptor(options, key);
Class<?> propertyClass = pd.getPropertyType();
Object value = transformationOptionOverrides.get(key);
if(value != null)
{
if(propertyClass.isInstance(value))
{
// Nothing to do
}
else if(value instanceof String && propertyClass.isInstance(Boolean.TRUE))
{
// Use relaxed converter
value = TransformationOptions.relaxedBooleanTypeConverter.convert((String)value);
}
else
{
value = DefaultTypeConverter.INSTANCE.convert(propertyClass, value);
}
}
PropertyUtils.setProperty(options, key, value);
}
catch(MethodNotFoundException mnfe) {}
catch(NoSuchMethodException nsme) {}
catch(InvocationTargetException ite) {}
catch(IllegalAccessException iae) {}
}
else
{
logger.warn("Unable to set override Transformation Option " + key + " on " + options);
}
}
}
}
示例8: propertyExists
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
static boolean propertyExists(Object bean, String property) {
return PropertyUtils.isReadable(bean, property) &&
PropertyUtils.isWriteable(bean, property);
}
示例9: propertyExists
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public static boolean propertyExists(Object bean, String property) {
return PropertyUtils.isReadable(bean, property) && PropertyUtils.isWriteable(bean, property);
}
示例10: propertyExists
import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
* Check if writable property exists.
*
* @param bean bean to inspect
* @param property name of property
* @return true if writable property exists.
*/
private static boolean propertyExists(Object bean, String property) {
return PropertyUtils.isReadable(bean, property)
&& PropertyUtils.isWriteable(bean, property);
}