pahakia-apt

Pahakia libraries

License

License

GroupId

GroupId

com.pahakia.lib
ArtifactId

ArtifactId

pahakia-apt
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

pahakia-apt
Pahakia libraries
Project URL

Project URL

https://github.com/pahakia/lib

Download pahakia-apt

How to add to project

<!-- https://jarcasting.com/artifacts/com.pahakia.lib/pahakia-apt/ -->
<dependency>
    <groupId>com.pahakia.lib</groupId>
    <artifactId>pahakia-apt</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.pahakia.lib/pahakia-apt/
implementation 'com.pahakia.lib:pahakia-apt:1.0'
// https://jarcasting.com/artifacts/com.pahakia.lib/pahakia-apt/
implementation ("com.pahakia.lib:pahakia-apt:1.0")
'com.pahakia.lib:pahakia-apt:jar:1.0'
<dependency org="com.pahakia.lib" name="pahakia-apt" rev="1.0">
  <artifact name="pahakia-apt" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.pahakia.lib', module='pahakia-apt', version='1.0')
)
libraryDependencies += "com.pahakia.lib" % "pahakia-apt" % "1.0"
[com.pahakia.lib/pahakia-apt "1.0"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

lib

A collection of java libraries including:

  1. pahakia-fault
    Fault - the once-for-all exception, see blog: http://tri-katch.blogspot.com.
  2. pahakia-apt
    Annotation processing at build/compile time.
    All annotated classes are recorded in META-INF/annotated-classes.
    It works both with Eclipse and Maven.
  3. pahakia-annotation-registry
    Build a registry from all META-INF/annotated-classes on classpath, keyed by annotation name.
  4. pahakia-settings
    Centralize program settings in one place: Settings.
    Individual setting can be defined so that it can:
    1. be validated
    2. have default value.
    The library provides the following pre-defined setting descriptors:
    1. BooleanSetting: true or false
    2. PatternSetting: pattern in regular expression
    3. RangeSetting: range between 2 integers
    4. ValidValuesSetting: list of valid value strings
    You can define additional setting descriptors by inheriting SettingBase.
    To retrieve a setting value, call a get... method on the setting descriptor, i.e.
    BooleanSetting bs = new BooleanSetting("consider.holiday", "if consider holiday", false);
    // NOTE: the above must be defined as constant in a class annotated with @RuntimeSettings.
    boolean considerHoliday = bs.getBoolean();
com.pahakia.lib

Versions

Version
1.0