BeanInfo

case class BeanInfo(clazz: Class[_], ctors: ArraySeq[ConstructorInfo], properties: Map[String, PropertyInfo], methods: Map[String, ArraySeq[MethodInfo]])
Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getGetter(property: String): Option[Method]
def getMethods(name: String): ArraySeq[MethodInfo]

Return public metheds according to given name

Return public metheds according to given name

def getPropertyType(property: String): Option[Class[_]]
def getPropertyTypeInfo(property: String): Option[TypeInfo]
def getSetter(property: String): Option[Method]

Return all public methods.

Return all public methods.

def readables: Map[String, PropertyInfo]
override def toString: String
Definition Classes
Any
def writables: Map[String, PropertyInfo]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product