hibernate / hibernate-models

An abstraction over "reflection" and annotations
Apache License 2.0
2 stars 5 forks source link

Overloaded forms of AnnotationUsage#getAttributeValue accepting a default value supplier #5

Closed sebersole closed 7 months ago

sebersole commented 7 months ago
<V> V getAttributeValue(String name, Supplier<V> defaultValueSupplier);
String getString(String name, Supplier<String> defaultValueSupplier);
int getInt(String name, Supplier<Integer> defaultValueSupplier);
...