
it.unimi.dsi.fastutil.chars.CharBooleanPair Maven / Gradle / Ivy
/*
* Copyright (C) 2002-2020 Sebastiano Vigna
*
* 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 it.unimi.dsi.fastutil.chars;
/**
* A type-specific {@link it.unimi.dsi.fastutil.Pair Pair}; provides some
* additional methods that use polymorphism to avoid (un)boxing.
*/
public interface CharBooleanPair extends it.unimi.dsi.fastutil.Pair {
/**
* Returns the left element of this pair.
*
* @return the left element of this pair.
*/
public char leftChar();
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default Character left() {
return Character.valueOf(leftChar());
}
/**
* Sets the left element of this pair (optional operation).
*
* @param l
* a new value for the left element.
*
* @implNote This implementation throws an
* {@link UnsupportedOperationException}.
*/
public default CharBooleanPair left(final char l) {
throw new UnsupportedOperationException();
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default CharBooleanPair left(final Character l) {
return left((l).charValue());
}
/**
* Returns the left element of this pair.
*
* @return the left element of this pair.
*
* @implNote This implementation delegates to {@link #left()}.
*
*/
public default char firstChar() {
return leftChar();
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default Character first() {
return Character.valueOf(firstChar());
}
/**
* Sets the left element of this pair (optional operation).
*
* @param l
* a new value for the left element.
*
* @implNote This implementation delegates to {@link #left(Object)}.
*/
public default CharBooleanPair first(final char l) {
return left(l);
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default CharBooleanPair first(final Character l) {
return first((l).charValue());
}
/**
* Returns the left element of this pair.
*
* @return the left element of this pair.
*
* @implNote This implementation delegates to {@link #left()}.
*
*/
public default char keyChar() {
return firstChar();
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default Character key() {
return Character.valueOf(keyChar());
}
/**
* Sets the left element of this pair (optional operation).
*
* @param l
* a new value for the left element.
*
* @implNote This implementation delegates to {@link #left(Object)}.
*/
public default CharBooleanPair key(final char l) {
return left(l);
}
@Deprecated
public default CharBooleanPair key(Character l) {
return key((l).charValue());
}
/**
* Returns the right element of this pair.
*
* @return the right element of this pair.
*/
public boolean rightBoolean();
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default Boolean right() {
return Boolean.valueOf(rightBoolean());
}
/**
* Sets the right element of this pair (optional operation).
*
* @param r
* a new value for the right element.
*
* @implNote This implementation throws an
* {@link UnsupportedOperationException}.
*/
public default CharBooleanPair right(final boolean r) {
throw new UnsupportedOperationException();
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default CharBooleanPair right(final Boolean l) {
return right((l).booleanValue());
}
/**
* Returns the right element of this pair.
*
* @return the right element of this pair.
*
* @implNote This implementation delegates to {@link #right()}.
*
*/
public default boolean secondBoolean() {
return rightBoolean();
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default Boolean second() {
return Boolean.valueOf(secondBoolean());
}
/**
* Sets the right element of this pair (optional operation).
*
* @param r
* a new value for the right element.
*
* @implNote This implementation delegates to {@link #right(Object)}.
*/
public default CharBooleanPair second(final boolean r) {
return right(r);
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default CharBooleanPair second(final Boolean l) {
return second((l).booleanValue());
}
/**
* Returns the right element of this pair.
*
* @return the right element of this pair.
*
* @implNote This implementation delegates to {@link #right()}.
*
*/
public default boolean valueBoolean() {
return rightBoolean();
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default Boolean value() {
return Boolean.valueOf(valueBoolean());
}
/**
* Sets the right element of this pair (optional operation).
*
* @param r
* a new value for the right element.
*
* @implNote This implementation delegates to {@link #right(Object)}.
*/
public default CharBooleanPair value(final boolean r) {
return right(r);
}
/**
* {@inheritDoc}
*
* @deprecated Please use the corresponding type-specific method instead.
*/
@SuppressWarnings("deprecation")
@Deprecated
@Override
public default CharBooleanPair value(final Boolean l) {
return value((l).booleanValue());
}
/**
* Returns a new type-specific immutable {@link it.unimi.dsi.fastutil.Pair Pair}
* with given left and right value.
*
* @param left
* the left value.
* @param right
* the right value.
*/
public static CharBooleanPair of(final char left, final boolean right) {
return new CharBooleanImmutablePair(left, right);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy