Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.helger.commons.collection.attr.AbstractReadOnlyAttributeContainer Maven / Gradle / Ivy
/**
* Copyright (C) 2014-2015 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.collection.attr;
import java.math.BigDecimal;
import java.math.BigInteger;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import com.helger.commons.CGlobal;
import com.helger.commons.lang.GenericReflection;
import com.helger.commons.typeconvert.TypeConverter;
/**
* Abstract base class for all kind of string-object mapping container. This
* implementation provides a default implementation for all things that can be
* independently implemented from the underlying data structure.
*
* @author Philip Helger
* @param
* Key type
* @param
* Value type
*/
@NotThreadSafe
public abstract class AbstractReadOnlyAttributeContainer implements IAttributeContainer
{
@Nullable
public final DATATYPE getCastedAttribute (@Nullable final KEYTYPE aName)
{
return GenericReflection. uncheckedCast (getAttributeObject (aName));
}
@Nullable
public final DATATYPE getCastedAttribute (@Nullable final KEYTYPE aName, @Nullable final DATATYPE aDefault)
{
final DATATYPE aValue = this. getCastedAttribute (aName);
return aValue == null ? aDefault : aValue;
}
@Nullable
public final DATATYPE getTypedAttribute (@Nullable final KEYTYPE aName, @Nonnull final Class aDstClass)
{
return TypeConverter.convertIfNecessary (getAttributeObject (aName), aDstClass);
}
@Nullable
public final DATATYPE getTypedAttribute (@Nullable final KEYTYPE aName,
@Nonnull final Class aDstClass,
@Nullable final DATATYPE aDefault)
{
final DATATYPE aValue = this. getTypedAttribute (aName, aDstClass);
return aValue == null ? aDefault : aValue;
}
@Nullable
public final String getAttributeAsString (@Nullable final KEYTYPE aName)
{
return getAttributeAsString (aName, null);
}
/**
* Get the string representation of the passed value, suitable for parameters.
*
* @param aParamName
* The name of the parameters. Has just informal character, for
* warnings. May be null
.
* @param aValue
* The value to be converted to a String. May be null
.
* Explicitly supported data types are: String, String[]. All other
* data types are returned as "toString()".
* @param sDefault
* The default value to be returned, if the passed value is
* null
or an empty String array.
* @return The default value if the value is null
or an empty
* String array, the value as string otherwise. If the value is a
* String[] than the first element is returned, and the other elements
* are discarded.
*/
@Nullable
@Deprecated
public static String getAsString (@Nullable final Object aParamName, @Nullable final Object aValue, @Nullable final String sDefault)
{
return AttributeValueConverter.getAsString (aParamName, aValue, sDefault);
}
@Nullable
public final String getAttributeAsString (@Nullable final KEYTYPE aName, @Nullable final String sDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsString (aName, aValue, sDefault);
}
@Deprecated
public static int getAsInt (@Nullable final Object aParamName, @Nullable final Object aValue, final int nDefault)
{
return AttributeValueConverter.getAsInt (aParamName, aValue, nDefault);
}
public final int getAttributeAsInt (@Nullable final KEYTYPE aName)
{
return getAttributeAsInt (aName, CGlobal.ILLEGAL_UINT);
}
public final int getAttributeAsInt (@Nullable final KEYTYPE aName, final int nDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsInt (aName, aValue, nDefault);
}
@Deprecated
public static long getAsLong (@Nullable final Object aParamName, @Nullable final Object aValue, final long nDefault)
{
return AttributeValueConverter.getAsLong (aParamName, aValue, nDefault);
}
public final long getAttributeAsLong (@Nullable final KEYTYPE aName)
{
return getAttributeAsLong (aName, CGlobal.ILLEGAL_ULONG);
}
public final long getAttributeAsLong (@Nullable final KEYTYPE aName, final long nDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsLong (aName, aValue, nDefault);
}
@Deprecated
public static double getAsDouble (@Nullable final Object aParamName, @Nullable final Object aValue, final double dDefault)
{
return AttributeValueConverter.getAsDouble (aParamName, aValue, dDefault);
}
public final double getAttributeAsDouble (@Nullable final KEYTYPE aName)
{
return getAttributeAsDouble (aName, CGlobal.ILLEGAL_UINT);
}
public final double getAttributeAsDouble (@Nullable final KEYTYPE aName, final double dDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsDouble (aName, aValue, dDefault);
}
@Deprecated
public static boolean getAsBoolean (@Nullable final Object aParamName, @Nullable final Object aValue, final boolean bDefault)
{
return AttributeValueConverter.getAsBoolean (aParamName, aValue, bDefault);
}
public final boolean getAttributeAsBoolean (@Nullable final KEYTYPE aName)
{
return getAttributeAsBoolean (aName, false);
}
public final boolean getAttributeAsBoolean (@Nullable final KEYTYPE aName, final boolean bDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsBoolean (aName, aValue, bDefault);
}
@Nullable
@Deprecated
public static BigInteger getAsBigInteger (@Nullable final Object aParamName, @Nullable final Object aValue, @Nullable final BigInteger aDefault)
{
return AttributeValueConverter.getAsBigInteger (aParamName, aValue, aDefault);
}
@Nullable
public final BigInteger getAttributeAsBigInteger (@Nullable final KEYTYPE aName)
{
return getAttributeAsBigInteger (aName, null);
}
@Nullable
public final BigInteger getAttributeAsBigInteger (@Nullable final KEYTYPE aName, @Nullable final BigInteger aDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsBigInteger (aName, aValue, aDefault);
}
@Nullable
@Deprecated
public static BigDecimal getAsBigDecimal (@Nullable final Object aParamName, @Nullable final Object aValue, @Nullable final BigDecimal aDefault)
{
return AttributeValueConverter.getAsBigDecimal (aParamName, aValue, aDefault);
}
@Nullable
public final BigDecimal getAttributeAsBigDecimal (@Nullable final KEYTYPE aName)
{
return getAttributeAsBigDecimal (aName, null);
}
@Nullable
public final BigDecimal getAttributeAsBigDecimal (@Nullable final KEYTYPE aName, @Nullable final BigDecimal aDefault)
{
final Object aValue = getAttributeObject (aName);
return AttributeValueConverter.getAsBigDecimal (aName, aValue, aDefault);
}
}