CopyOnWriteArrayList, Arraylist, LinkedList,
AttributeList, RoleList, RoleUnresolvedList, Stack and Vector |
POJO's attributes can be these list types and
the bean collection can retrieve data element as a list object and
get its value by its index number. |
ConcurrentHashMap, HashMap, Hashtable, LinkedHashMap,
Properties, TreeMap, UIDefaults, and WeakHashMap |
POJO's attributes can be these map types, and
the bean collection can retrieve the data element as a map object
and get its value by its key name. The key name must be a string value. |
byte[], int[], char[], long[], float[], double[],
boolean[], short[] and String[] |
POJO's attributes can be these array types,
and the bean collection can retrieve the data element as an array
object and get its value by its index number. |
nested Java Bean |
POJO's attributes can be another POJO and the
bean collection can retrieve the data element as the nested POJO object,
and get its value by the attribute name of the nested POJO. |