• Stars
    star
    393
  • Rank 105,639 (Top 3 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 10 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Rare, hard-to-write utilities that are thoroughly tested

java-util

Maven Central Javadoc

Rare, hard-to-write utilities that are thoroughly tested (> 98% code coverage via JUnit tests).

To include in your project:

Gradle
implementation 'com.cedarsoftware:java-util:2.0.0'
Maven
<dependency>
  <groupId>com.cedarsoftware</groupId>
  <artifactId>java-util</artifactId>
  <version>2.0.0</version>
</dependency>

The java-util jar is about 150K in size.

Sponsors

Alt text

YourKit supports open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.

Intellij IDEA from JetBrains Intellij IDEA


Since Java 1.5, you can statically import classes. Using this technique with many of the classes below, it makes their methods directly accessible in your source code, keeping your source code smaller and easier to read. For example:

import static com.cedarsoftware.util.Converter.*;

will permit you to write:

...
Calendar cal = convertToCalendar("2019/11/17");
Date date = convertToDate("November 17th, 2019 4:45pm");
TimeStamp stamp = convertToTimeStamp(cal);
AtomicLong atomicLong = convertToAtomicLong("123128300")
String s = convertToString(atomicLong)
...

Included in java-util:

  • ArrayUtilities - Useful utilities for working with Java's arrays []
  • ByteUtilities - Useful routines for converting byte[] to HEX character [] and visa-versa.
  • Sets
    • CompactSet - Small memory footprint Set that expands to a HashSet when size() > compactSize().
    • CompactLinkedSet - Small memory footprint Set that expands to a LinkedHashSet when size() > compactSize().
    • CompactCILinkedSet - Small memory footprint Set that expands to a case-insensitive LinkedHashSet when size() > compactSize().
    • CompactCIHashSet - Small memory footprint Set that expands to a case-insensitive HashSet when size() > compactSize().
    • CaseInsensitiveSet - Set that ignores case for Strings contained within.
  • Maps
    • CompactMap - Small memory footprint Map that expands to a HashMap when size() > compactSize() entries.
    • CompactLinkedMap - Small memory footprint Map that expands to a LinkedHashMap when size() > compactSize() entries.
    • CompactCILinkedMap - Small memory footprint Map that expands to a case-insensitive LinkedHashMap when size() > compactSize() entries.
    • CompactCIHashMap - Small memory footprint Map that expands to a case-insensitive HashMap when size() > compactSize() entries.
    • CaseInsensitiveMap - Map that ignores case when Strings are used as keys.
    • TrackingMap - Map class that tracks when the keys are accessed via .get() or .containsKey(). Provided by @seankellner
  • Converter - Convert from one instance to another. For example, convert("45.3", BigDecimal.class) will convert the String to a BigDecimal. Works for all primitives, primitive wrappers, Date, java.sql.Date, String, BigDecimal, BigInteger, AtomicBoolean, AtomicLong, etc. The method is very generous on what it allows to be converted. For example, a Calendar instance can be input for a Date or Long. Examine source to see all possibilities.
  • DateUtilities - Robust date String parser that handles date/time, date, time, time/date, string name months or numeric months, skips comma, etc. English month names only (plus common month name abbreviations), time with/without seconds or milliseconds, y/m/d and m/d/y ordering as well.
  • DeepEquals - Compare two object graphs and return 'true' if they are equivalent, 'false' otherwise. This will handle cycles in the graph, and will call an equals() method on an object if it has one, otherwise it will do a field-by-field equivalency check for non-transient fields. Has options to turn on/off using .equals() methods that may exist on classes.
  • EncryptionUtilities - Makes it easy to compute MD5, SHA-1, SHA-256, SHA-512 checksums for Strings, byte[], as well as making it easy to AES-128 encrypt Strings and byte[]'s.
  • Executor - One line call to execute operating system commands. Executor executor = new Executor(); executor.exec('ls -l'); Call executor.getOut() to fetch the output, executor.getError() retrieve error output. If a -1 is returned, there was an error.
  • FastByteArrayOutputStream - Unlike the JDK ByteArrayOutputStream, FastByteArrayOutputStream is 1) not synchronized, and 2) allows access to it's internal byte[] eliminating the duplication of the byte[] when toByteArray() is called.
  • GraphComparator - Compare any two Java object graphs. It generates a List of Delta objects which describe the difference between the two Object graphs. This Delta list can be played back, such that List deltas = GraphComparator.delta(source, target); GraphComparator.applyDelta(source, deltas) will bring source up to match target. See JUnit test cases for example usage. This is a completely thorough graph difference (and apply delta), including support for Array, Collection, Map, and object field differences.
  • IOUtilities - Handy methods for simplifying I/O including such niceties as properly setting up the input stream for HttpUrlConnections based on their specified encoding. Single line .close() method that handles exceptions for you.
  • MathUtilities - Handy mathematical algorithms to make your code smaller. For example, minimum of array of values.
  • ReflectionUtils - Simple one-liners for many common reflection tasks. Speedy reflection calls due to Method caching.
  • SafeSimpleDateFormat - Instances of this class can be stored as member variables and reused without any worry about thread safety. Fixing the problems with the JDK's SimpleDateFormat and thread safety (no reentrancy support).
  • StringUtilities - Helpful methods that make simple work of common String related tasks.
  • SystemUtilities - A Helpful utility methods for working with external entities like the OS, environment variables, and system properties.
  • Traverser - Pass any Java object to this Utility class, it will call your passed in anonymous method for each object it encounters while traversing the complete graph. It handles cycles within the graph. Permits you to perform generalized actions on all objects within an object graph.
  • UniqueIdGenerator - Generates unique Java long value, that can be deterministically unique across up to 100 servers in a cluster (if configured with an environment variable), the ids are monotonically increasing, and can generate the ids at a rate of about 10 million per second. Because the current time to the millisecond is embedded in the id, one can back-calculate when the id was generated.
  • UrlUtitilies - Fetch cookies from headers, getUrlConnections(), HTTP Response error handler, and more.
  • UrlInvocationHandler - Use to easily communicate with RESTful JSON servers, especially ones that implement a Java interface that you have access to.

See changelog.md for revision history.

By: John DeRegnaucourt and Ken Partlow