Class CollectionHandlers.Info

  • Enclosing class:
    CollectionHandlers

    static class CollectionHandlers.Info
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) boolean getSetCollection
      True for collections that require both get and set methods.
      (package private) CollectionHandler handler
      The collection handler instance.
      (package private) java.lang.Class javaClass
      The Java class of the collection (e.g.
      (package private) java.lang.String shortName
      The short name of the collection (e.g.
    • Constructor Summary

      Constructors 
      Constructor Description
      Info​(java.lang.String shortName, java.lang.Class javaClass, boolean getSetCollection, CollectionHandler handler)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • shortName

        final java.lang.String shortName
        The short name of the collection (e.g. vector).
      • javaClass

        final java.lang.Class javaClass
        The Java class of the collection (e.g. java.util.Vector).
      • getSetCollection

        final boolean getSetCollection
        True for collections that require both get and set methods.
    • Constructor Detail

      • Info

        Info​(java.lang.String shortName,
             java.lang.Class javaClass,
             boolean getSetCollection,
             CollectionHandler handler)