Pahakia Library

Pahakia libraries

License

License

GroupId

GroupId

com.pahakia.lib
ArtifactId

ArtifactId

lib
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

pom
Description

Description

Pahakia Library
Pahakia libraries
Project URL

Project URL

https://github.com/pahakia/lib
Source Code Management

Source Code Management

https://github.com/pahakia/lib

Download lib

Filename Size
lib-1.0.pom 5 KB
Browse

How to add to project

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

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

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
1.0-RC1