所有类


java.beans
类 IndexedPropertyDescriptor

java.lang.Object
  继承者 java.beans.FeatureDescriptor
      继承者 java.beans.PropertyDescriptor
          继承者 java.beans.IndexedPropertyDescriptor

public class IndexedPropertyDescriptor
   
   
   
   
   
extends PropertyDescriptor

IndexedPropertyDescriptor 描述了类似数组行为的属性,且有一种访问数组的特定元素的索引读和/或索引写方法。

indexed 属性还可以提供简单的非索引读和写方法。如果存在这些方法,它们可读取和写入索引写方法所返回类型的读写数组。


构造方法摘要
IndexedPropertyDescriptor(String propertyName, Class<?> beanClass)
          此构造方法通过 getFoo 和 setFoo 访问器方法为符合标准 Java 约定的属性构造 IndexedPropertyDescriptor,将其用于索引访问和数组访问。
IndexedPropertyDescriptor(String propertyName, Class<?> beanClass, String readMethodName, String writeMethodName, String indexedReadMethodName, String indexedWriteMethodName)
          此构造方法带有一个简单属性的名称和用于读写属性的方法名称,它们都是带索引的或不带索引的。
IndexedPropertyDescriptor(String propertyName, Method readMethod, Method writeMethod, Method indexedReadMethod, Method indexedWriteMethod)
          此构造方法带有某一简单属性的名称,以及用来读取和写入属性的 Method 对象。
 
方法摘要
 boolean equals(Object obj)
          将此 PropertyDescriptor 与指定对象比较。
 Class<?> getIndexedPropertyType()
          获得 indexed 属性类型的 Class 对象。
 Method getIndexedReadMethod()
          获得应该用于读取 indexed 属性值的方法。
 Method getIndexedWriteMethod()
          获得应该用于写入 indexed 属性值的方法。
 int hashCode()
          返回对象的哈希码值。
 void setIndexedReadMethod(Method readMethod)
          设置应该用于读取 indexed 属性值的方法。
 void setIndexedWriteMethod(Method writeMethod)
          设置应该用于写入 indexed 属性值的方法。
 
从类 java.beans.PropertyDescriptor 继承的方法
createPropertyEditor, getPropertyEditorClass, getPropertyType, getReadMethod, getWriteMethod, isBound, isConstrained, setBound, setConstrained, setPropertyEditorClass, setReadMethod, setWriteMethod
 
从类 java.beans.FeatureDescriptor 继承的方法
attributeNames, getDisplayName, getName, getShortDescription, getValue, isExpert, isHidden, isPreferred, setDisplayName, setExpert, setHidden, setName, setPreferred, setShortDescription, setValue
 
从类 java.lang.Object 继承的方法
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

IndexedPropertyDescriptor

public IndexedPropertyDescriptor(String propertyName,
                                 Class<?> beanClass)
                          throws IntrospectionException
此构造方法通过 getFoo 和 setFoo 访问器方法为符合标准 Java 约定的属性构造 IndexedPropertyDescriptor,将其用于索引访问和数组访问。

因此,如果参数名为 "fred",则假定有一个索引 reader 方法 "getFred"、一个也称为 "getFred" 的非索引(数组)reader 方法、一个索引 writer 方法 "setFred" 和一个非索引 writer 方法 "setFred"。

参数:
propertyName - 属性的编程名称。
beanClass - 目标 bean 的 Class 对象。
抛出:
IntrospectionException - 如果在内省期间发生异常。

IndexedPropertyDescriptor

public IndexedPropertyDescriptor(String propertyName,
                                 Class<?> beanClass,
                                 String readMethodName,
                                 String writeMethodName,
                                 String indexedReadMethodName,
                                 String indexedWriteMethodName)
                          throws IntrospectionException
此构造方法带有一个简单属性的名称和用于读写属性的方法名称,它们都是带索引的或不带索引的。

参数:
propertyName - 属性的编程名称。
beanClass - 目标 bean 的 Class 对象。
readMethodName - 用来以数组形式读取属性值的方法的名称。如果该属性是只写的或是必须建立索引的,则可能返回 null。
writeMethodName - 用来以数组形式写入属性值的方法的名称。如果该属性是只读的或是必须建立索引的,则可能返回 null。
indexedReadMethodName - 用于读取 indexed 属性值的方法的名称。如果属性是只写的,则该参数可能为 null。
indexedWriteMethodName - 用于写入 indexed 属性值的方法的名称。如果属性是只读的,则该参数可能为 null。
抛出:
IntrospectionException - 如果在内省期间发生异常。

IndexedPropertyDescriptor

public IndexedPropertyDescriptor(String propertyName,
                                 Method readMethod,
                                 Method writeMethod,
                                 Method indexedReadMethod,
                                 Method indexedWriteMethod)
                          throws IntrospectionException
此构造方法带有某一简单属性的名称,以及用来读取和写入属性的 Method 对象。

参数:
propertyName - 属性的编程名称。
readMethod - 用来以数组形式读取属性值的方法。如果该属性是只写的或是必须建立索引的,则可能返回 null。
writeMethod - 用来以数组形式写入属性值的方法。如果该属性是只读的或是必须建立索引的,则可能返回 null。
indexedReadMethod - 用于读取 indexed 属性值的方法。如果属性是只写的,则该参数可能为 null。
indexedWriteMethod - 用于写入 indexed 属性值的方法。如果属性是只读的,则该参数可能为 null。
抛出:
IntrospectionException - 如果在内省期间发生异常。
方法详细信息

getIndexedReadMethod

public Method getIndexedReadMethod()
获得应该用于读取 indexed 属性值的方法。

返回:
应该用于读取 indexed 属性值的方法。如果该属性没有建立索引或是只写的,则可能返回 null。

setIndexedReadMethod

public void setIndexedReadMethod(Method readMethod)
                          throws IntrospectionException
设置应该用于读取 indexed 属性值的方法。

参数:
readMethod - 新的索引读取方法。
抛出:
IntrospectionException

getIndexedWriteMethod

public Method getIndexedWriteMethod()
获得应该用于写入 indexed 属性值的方法。

返回:
应该用于写入 indexed 属性值的方法。如果该属性没有建立索引或是只读的,则可能返回 null。

setIndexedWriteMethod

public void setIndexedWriteMethod(Method writeMethod)
                           throws IntrospectionException
设置应该用于写入 indexed 属性值的方法。

参数:
writeMethod - 新的索引写入方法。
抛出:
IntrospectionException

getIndexedPropertyType

public Class<?> getIndexedPropertyType()
获得 indexed 属性类型的 Class 对象。返回的 Class 可能描述诸如 int 的基本类型。

返回:
用于 indexed 属性类型的 Class;如果类型无法确定,则可能返回 null

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部