it.tidalwave.util.Id Maven / Gradle / Ivy
/*
* #%L
* *********************************************************************************************************************
*
* These Foolish Things - Miscellaneous utilities
* http://thesefoolishthings.java.net - hg clone https://bitbucket.org/tidalwave/thesefoolishthings-src
* %%
* Copyright (C) 2009 - 2013 Tidalwave s.a.s. (http://tidalwave.it)
* %%
* *********************************************************************************************************************
*
* 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.
*
* *********************************************************************************************************************
*
* $Id$
*
* *********************************************************************************************************************
* #L%
*/
package it.tidalwave.util;
import javax.annotation.concurrent.Immutable;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import lombok.RequiredArgsConstructor;
import java.io.Serializable;
/***********************************************************************************************************************
*
* An opaque wrapper for identifiers.
*
* @author Fabrizio Giudici
* @version $Id$
* @it.tidalwave.javadoc.stable
*
**********************************************************************************************************************/
@Immutable @RequiredArgsConstructor
public class Id implements Serializable, Comparable, StringValue
{
private static final long serialVersionUID = 3309234234279593043L;
@Nonnull
private final Object value;
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
// @Override
@Nonnull
public String stringValue()
{
return (value instanceof StringValue) ? ((StringValue)value).stringValue() : value.toString();
}
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override
public boolean equals (final @CheckForNull Object object)
{
if (object == null)
{
return false;
}
if (getClass() != object.getClass())
{
return false;
}
final Id other = (Id)object;
return this.value.equals(other.value);
}
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override
public int hashCode()
{
return value.hashCode();
}
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
// @Override
public int compareTo (final Id other)
{
return stringValue().compareTo(other.stringValue());
}
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override @Nonnull
public String toString()
{
return stringValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy