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

eu.cedarsoft.utils.ObjectFactory Maven / Gradle / Ivy

The newest version!
package eu.cedarsoft.utils;

import org.jetbrains.annotations.NotNull;

/**
 * Creates an object from a string
 */
public interface ObjectFactory {
  @NotNull
  T create( @NotNull String representation ) throws InvalidRepresentationException;


  class InvalidRepresentationException extends Exception {
    public InvalidRepresentationException( String message ) {
      super( message );
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy