com.helger.commons.format.FormatableObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.8+ Library with tons of utility classes required in all projects
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[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.helger.commons.format;
import java.util.function.Function;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.string.ToStringGenerator;
/**
* This class represents a single object with an additional formatter.
*
* @author Philip Helger
* @param
* Data type to be formatted
*/
@NotThreadSafe
public class FormatableObject implements IFormatableObject
{
/** The current value. Maybe null
. */
private final DATATYPE m_aValue;
/** The optional formatter to use. */
private final Function super DATATYPE, ? extends String> m_aFormatter;
/**
* Init the field with a value.
*
* @param aValue
* The value to be used. May be null
.
* @param aFormatter
* The optional formatter to use. May be null
.
*/
public FormatableObject (@Nullable final DATATYPE aValue, @Nullable final Function super DATATYPE, ? extends String> aFormatter)
{
m_aValue = aValue;
m_aFormatter = aFormatter;
}
@Nullable
public DATATYPE getValue ()
{
return m_aValue;
}
@Nullable
public Function super DATATYPE, ? extends String> getFormatter ()
{
return m_aFormatter;
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
final FormatableObject > rhs = (FormatableObject >) o;
return EqualsHelper.equals (m_aValue, rhs.m_aValue) && EqualsHelper.equals (m_aFormatter, rhs.m_aFormatter);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (m_aValue).append (m_aFormatter).getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("value", m_aValue).appendIfNotNull ("formatter", m_aFormatter).getToString ();
}
}