Package com.io7m.jproperties.monad
Class JPropertyFailure<A>
java.lang.Object
com.io7m.jproperties.monad.JPropertyFailure<A>
- Type Parameters:
A- The type of result values
- All Implemented Interfaces:
JPropertyParseMonadType<A>,JPropertyParseMonadType.JPropertyFailureType<A>
public final class JPropertyFailure<A> extends java.lang.Object implements JPropertyParseMonadType.JPropertyFailureType<A>
A result indicating failure.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJPropertyFailure.Builder<A>Builds instances of typeJPropertyFailure.Nested classes/interfaces inherited from interface com.io7m.jproperties.monad.JPropertyParseMonadType
JPropertyParseMonadType.JPropertyErrorType, JPropertyParseMonadType.JPropertyFailureType<A>, JPropertyParseMonadType.JPropertySuccessType<A>, JPropertyParseMonadType.JPropertyWarningType, JPropertyParseMonadType.Kind, JPropertyParseMonadType.Unit -
Method Summary
Modifier and Type Method Description static <A> JPropertyFailure.Builder<A>builder()Creates a builder forJPropertyFailure.static <A> JPropertyFailure<A>copyOf(JPropertyParseMonadType.JPropertyFailureType<A> instance)Creates an immutable copy of aJPropertyParseMonadType.JPropertyFailureTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofJPropertyFailurethat have equal attribute values.java.util.List<JPropertyError>errors()java.lang.Exceptionexception()inthashCode()Computes a hash code from attributes:warnings,errors,exception.java.lang.StringtoString()Prints the immutable valueJPropertyFailurewith attribute values.java.util.List<JPropertyWarning>warnings()JPropertyFailure<A>withErrors(JPropertyError... elements)Copy the current immutable object with elements that replace the content oferrors.JPropertyFailure<A>withErrors(java.lang.Iterable<? extends JPropertyError> elements)Copy the current immutable object with elements that replace the content oferrors.JPropertyFailure<A>withException(java.lang.Exception value)Copy the current immutable object by setting a value for theexceptionattribute.JPropertyFailure<A>withWarnings(JPropertyWarning... elements)Copy the current immutable object with elements that replace the content ofwarnings.JPropertyFailure<A>withWarnings(java.lang.Iterable<? extends JPropertyWarning> elements)Copy the current immutable object with elements that replace the content ofwarnings.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.jproperties.monad.JPropertyParseMonadType
andThenMethods inherited from interface com.io7m.jproperties.monad.JPropertyParseMonadType.JPropertyFailureType
flatMap, kind, map
-
Method Details
-
warnings
- Specified by:
warningsin interfaceJPropertyParseMonadType<A>- Returns:
- The accumulated warnings
-
errors
- Specified by:
errorsin interfaceJPropertyParseMonadType<A>- Returns:
- The accumulated errors
-
exception
public java.lang.Exception exception()- Specified by:
exceptionin interfaceJPropertyParseMonadType.JPropertyFailureType<A>- Returns:
- The exception raised during parsing
-
withWarnings
Copy the current immutable object with elements that replace the content ofwarnings.- Parameters:
elements- The elements to set- Returns:
- A modified copy of
thisobject
-
withWarnings
public final JPropertyFailure<A> withWarnings(java.lang.Iterable<? extends JPropertyWarning> elements)Copy the current immutable object with elements that replace the content ofwarnings. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
elements- An iterable of warnings elements to set- Returns:
- A modified copy of
thisobject
-
withErrors
Copy the current immutable object with elements that replace the content oferrors.- Parameters:
elements- The elements to set- Returns:
- A modified copy of
thisobject
-
withErrors
Copy the current immutable object with elements that replace the content oferrors. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
elements- An iterable of errors elements to set- Returns:
- A modified copy of
thisobject
-
withException
Copy the current immutable object by setting a value for theexceptionattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for exception- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofJPropertyFailurethat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:warnings,errors,exception.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueJPropertyFailurewith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
copyOf
public static <A> JPropertyFailure<A> copyOf(JPropertyParseMonadType.JPropertyFailureType<A> instance)Creates an immutable copy of aJPropertyParseMonadType.JPropertyFailureTypevalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Type Parameters:
A- generic parameter A- Parameters:
instance- The instance to copy- Returns:
- A copied immutable JPropertyFailure instance
-
builder
Creates a builder forJPropertyFailure.JPropertyFailure.<A>builder() .addWarnings|addAllWarnings(JPropertyWarning) //warningselements .addErrors|addAllErrors(JPropertyError) //errorselements .setException(Exception) // requiredexception.build();- Type Parameters:
A- generic parameter A- Returns:
- A new JPropertyFailure builder
-