pahakia-annotation-registry

Pahakia libraries

Лицензия

Лицензия

Группа

Группа

com.pahakia.lib
Идентификатор

Идентификатор

pahakia-annotation-registry
Последняя версия

Последняя версия

1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

pahakia-annotation-registry
Pahakia libraries
Ссылка на сайт

Ссылка на сайт

https://github.com/pahakia/lib

Скачать pahakia-annotation-registry

Как подключить последнюю версию

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

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.pahakia.lib : pahakia-fault jar

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11

Модули Проекта

Данный проект не имеет модулей.

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

Версии библиотеки

Версия
1.0