eu.cedarsoft.utils.ObjectFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmd Show documentation
Show all versions of cmd Show documentation
Utils for access to the command line.
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