com.helger.commons.state.ITriState 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
The newest version!
/*
* 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.state;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* Base interface for the tri state.
*
* @author Philip Helger
*/
public interface ITriState
{
/**
* @return true
if the value is true
.
*/
boolean isTrue ();
/**
* @return true
if the value is false
*/
boolean isFalse ();
/**
* @return true
if the value is not undefined (if it is either
* true
or false
)
*/
boolean isDefined ();
/**
* @return true
if the value is undefined (if it is neither
* true
nor false
)
*/
default boolean isUndefined ()
{
return !isDefined ();
}
/**
* Convert the tri state value into a boolean value. If it is undefined, an
* {@link IllegalStateException} is thrown.
*
* @return true
if {@link #isTrue()} is true, false
* if {@link #isFalse()} is true, or an exception otherwise!
* @throws IllegalStateException
* If this is undefined
* @see #getAsBooleanValue(boolean)
*/
boolean getAsBooleanValue ();
/**
* Convert the tri state value into a boolean value, depending on what
* "undefined" means.
*
* @param bUndefinedValue
* The boolean representation of undefined.
* @return true
if {@link #isTrue()} is true, false
* if {@link #isFalse()} is true, or otherwise the passed parameter!
* @see #getAsBooleanValue()
*/
boolean getAsBooleanValue (boolean bUndefinedValue);
/**
* Convert the tri state value into a {@link Boolean} value, depending on what
* "undefined" means.
*
* @return {@link Boolean#TRUE} if {@link #isTrue()} is true
,
* {@link Boolean#FALSE} if {@link #isFalse()} is true
,
* or null
!
*/
@Nullable
Boolean getAsBooleanObj ();
/**
* Convert the tri state value into a {@link Boolean} value, depending on what
* "undefined" means.
*
* @param bUndefinedValue
* The {@link boolean} representation of undefined.
* @return {@link Boolean#TRUE} if {@link #isTrue()} is true,
* {@link Boolean#FALSE} if {@link #isFalse()} is true, or otherwise
* the passed parameter!
*/
@Nonnull
default Boolean getAsBooleanObj (final boolean bUndefinedValue)
{
return getAsBooleanObj (Boolean.valueOf (bUndefinedValue));
}
/**
* Convert the tri state value into a {@link Boolean} value, depending on what
* "undefined" means.
*
* @param aUndefinedValue
* The {@link Boolean} representation of undefined.
* @return {@link Boolean#TRUE} if {@link #isTrue()} is true,
* {@link Boolean#FALSE} if {@link #isFalse()} is true, or otherwise
* the passed parameter!
*/
@Nullable
Boolean getAsBooleanObj (@Nullable Boolean aUndefinedValue);
}