Releases: fujaba/fulibTables
Releases · fujaba/fulibTables
fulibTables v1.4.0
fulibTables v1.3.0
New Features
- Added the name-agnostic
ObjectTable.expandAll
and.hasAnyLink
methods. #4 - Added additional constraint building APIs to
PatternBuilder
. #2 - Added debugging support to
PatternMatcher
. #1 - Added support for multiple root patterns to
PatternMatcher
. #3 - Added support for "any"-links to
PatternMatcher
by setting a role name to*
. #4
Improvements
ObjectTable
no longer throws exceptions when an object cannot be reflected.- General improvements to the
PatternMatcher
API. - The
ObjectTable.hasLink
method now throws anIllegalArgumentException
if the other table does not share the same underlying data structure.
fulibTables v1.2.0
General
- Transitioned many APIs from concrete implementation types like
ArrayList
orLinkedHashMap
to their respective
interfaces likeList
orMap
.In places where this could not be done in-place, new APIs were added and the old ones deprecated.
See the respective Javadocs for migration info. - Deprecated some misplaced or accidentally public APIs.
Check for deprecation warnings and see the respective Javadocs for migration info.
- General code cleanup and minor optimizations.
New Features
- Added the generic
Table<T>
class as a supertype of all existing table classes. - Added the
BooleanTable
class. - Added an
average
method to all numeric table classes. - Added the
Renderer
,MarkdownRenderer
andHtmlRenderer
classes for improved string rendering. #7 - Added a few new convenience APIs.
Improvements
- The
ObjectTable
class is now generic. #6 - Improved generics for many Table-related APIs, improving type safety.
- Improved the
PatternBuilder
API. - Interacting with tables pointing to columns that were removed with
dropColumns
orselectColumns
now throws an exception. #5 - Naming a column twice in
selectColumns
now throws an exception.
Bugfixes
- The
doubleTable.max
andfloatTable.max
methods now return their respective negativeMAX_VALUE
instead ofMIN_VALUE
.
fulibTables v1.1.0
- Bumped version number.