com.phloc.commons.state.impl.SuccessWithValue Maven / Gradle / Ivy
/**
* Copyright (C) 2006-2015 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.commons.state.impl;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import com.phloc.commons.ValueEnforcer;
import com.phloc.commons.equals.EqualsUtils;
import com.phloc.commons.hash.HashCodeGenerator;
import com.phloc.commons.mutable.IReadonlyWrapper;
import com.phloc.commons.state.ESuccess;
import com.phloc.commons.state.ISuccessIndicator;
import com.phloc.commons.string.ToStringGenerator;
/**
* Wraps a success indicator and an arbitrary value.
*
* @author Philip Helger
* @param
* The data type that is wrapped together with the success indicator
*/
@Immutable
public class SuccessWithValue implements ISuccessIndicator, IReadonlyWrapper
{
private final ESuccess m_eSuccess;
private final DATATYPE m_aObj;
/**
* Constructor
*
* @param aSuccessIndicator
* The success indicator. May not be null
.
*/
public SuccessWithValue (@Nonnull final ISuccessIndicator aSuccessIndicator)
{
this (aSuccessIndicator, null);
}
/**
* Constructor
*
* @param aSuccessIndicator
* The success indicator. May not be null
.
* @param aObj
* The assigned value. May be null
.
*/
public SuccessWithValue (@Nonnull final ISuccessIndicator aSuccessIndicator, @Nullable final DATATYPE aObj)
{
ValueEnforcer.notNull (aSuccessIndicator, "SuccessIndicator");
// Wrap in ESuccess so that equals works for sure
this.m_eSuccess = ESuccess.valueOf (aSuccessIndicator);
this.m_aObj = aObj;
}
@Override
public boolean isSuccess ()
{
return this.m_eSuccess.isSuccess ();
}
@Override
public boolean isFailure ()
{
return this.m_eSuccess.isFailure ();
}
@Override
@Nullable
public DATATYPE get ()
{
return this.m_aObj;
}
@Override
public boolean isSet ()
{
return this.m_aObj != null;
}
/**
* Get the store value if this is a success. Otherwise the passed failure
* value is returned.
*
* @param aFailureValue
* The failure value to be used. May be null
.
* @return Either the stored value or the failure value. May be
* null
.
*/
@Nullable
public DATATYPE getIfSuccess (@Nullable final DATATYPE aFailureValue)
{
return this.m_eSuccess.isSuccess () ? this.m_aObj : aFailureValue;
}
/**
* Get the store value if this is a success. Otherwise null
is
* returned.
*
* @return Either the stored value or null
.
*/
@Nullable
public DATATYPE getIfSuccessOrNull ()
{
return getIfSuccess (null);
}
/**
* Get the store value if this is a failure. Otherwise the passed success
* value is returned.
*
* @param aSuccessValue
* The failure value to be used. May be null
.
* @return Either the stored value or the failure value. May be
* null
.
*/
@Nullable
public DATATYPE getIfFailure (@Nullable final DATATYPE aSuccessValue)
{
return this.m_eSuccess.isFailure () ? this.m_aObj : aSuccessValue;
}
/**
* Get the store value if this is a failure. Otherwise null
is
* returned.
*
* @return Either the stored value or null
.
*/
@Nullable
public DATATYPE getIfFailureOrNull ()
{
return getIfFailure (null);
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
final SuccessWithValue > rhs = (SuccessWithValue >) o;
return this.m_eSuccess.equals (rhs.m_eSuccess) && EqualsUtils.equals (this.m_aObj, rhs.m_aObj);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (this.m_eSuccess).append (this.m_aObj).getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("success", this.m_eSuccess).append ("obj", this.m_aObj).toString ();
}
/**
* Create a new object with the given value.
*
* @param
* data type
* @param aSuccessIndicator
* The success indicator. May not be null
.
* @param aValue
* The value to be used. May be null
.
* @return Never null
.
*/
@Nonnull
public static SuccessWithValue create (@Nonnull final ISuccessIndicator aSuccessIndicator,
@Nullable final DATATYPE aValue)
{
return new SuccessWithValue (aSuccessIndicator, aValue);
}
/**
* Create a new success object with the given value.
*
* @param
* data type
* @param aValue
* The value to be used. May be null
.
* @return Never null
.
*/
@Nonnull
public static SuccessWithValue createSuccess (@Nullable final DATATYPE aValue)
{
return new SuccessWithValue (ESuccess.SUCCESS, aValue);
}
/**
* Create a new failure object with the given value.
*
* @param
* data type
* @param aValue
* The value to be used. May be null
.
* @return Never null
.
*/
@Nonnull
public static SuccessWithValue createFailure (@Nullable final DATATYPE aValue)
{
return new SuccessWithValue (ESuccess.FAILURE, aValue);
}
}