Skip to content
This repository has been archived by the owner on Nov 28, 2017. It is now read-only.

Latest commit

 

History

History
31 lines (24 loc) · 1.06 KB

README.md

File metadata and controls

31 lines (24 loc) · 1.06 KB

Introduction

ScalaBeans is a reflection library for Scala. Its aims are similar to JavaBeans, but scala-specific features have been added:

  • Recognizes scala properties
  • Can handle immutable and case classes
  • Scala collections are supported, including builders
  • Preserve generic type information
  • Type pattern matching (including generic type arguments)
  • High performance serialization to/from protobuf, json, xml

Further information:

Getting started

If you use Maven, add following lines to your pom.xml:

<dependencies>
...
  <dependency>
    <groupId>org.scalastuff</groupId>
    <artifactId>scalabeans</artifactId>
    <version>0.3</version>
  </dependency>
</dependencies>