All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lojang-invoke.2.0.6.source-code.module-info Maven / Gradle / Ivy

Go to download

Klojang Invoke is a Java module focused on path-based object access and dynamic invocation. Its central classes are the Path class and the PathWalker class. The Path class captures a path through an object graph. For example "employee.address.city". The PathWalker class lets you read from and write to a wide variety of types using Path objects.

There is a newer version: 21.1.0
Show newest version
/**
 * Klojang Invoke is a module focused on path-based object access and dynamic
 * invocation. Its central classes are the {@link org.klojang.path.Path Path} class and
 * the {@link org.klojang.path.PathWalker PathWalker} class. The {@code Path} class
 * captures a path through an object graph. For example {@code employee.address.city}.
 * The {@code PathWalker} class lets you read from and write to a wide variety of types
 * using {@code path} objects.
 */
module org.klojang.invoke {

  exports org.klojang.invoke;
  exports org.klojang.path;
  exports org.klojang.path.util;

  requires org.klojang.check;
  requires org.klojang.util;
  requires org.klojang.convert;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy