keycloakjar.com.github.benmanes.caffeine.cache.AccessOrderDeque Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-bpm-identity-keycloak-all Show documentation
Show all versions of camunda-bpm-identity-keycloak-all Show documentation
Camunda Keycloak Identity Provider Plugin including all transitive dependencies
The newest version!
/*
* Copyright 2014 Ben Manes. All Rights Reserved.
*
* 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.github.benmanes.caffeine.cache;
import java.util.Deque;
import org.checkerframework.checker.nullness.qual.Nullable;
import com.github.benmanes.caffeine.cache.AccessOrderDeque.AccessOrder;
/**
* A linked deque implementation used to represent an access-order queue.
*
* @author [email protected] (Ben Manes)
* @param the type of elements held in this collection
*/
final class AccessOrderDeque> extends AbstractLinkedDeque {
@Override
public boolean contains(Object o) {
return (o instanceof AccessOrder>) && contains((AccessOrder>) o);
}
// A fast-path containment check
boolean contains(AccessOrder> e) {
return (e.getPreviousInAccessOrder() != null)
|| (e.getNextInAccessOrder() != null)
|| (e == first);
}
@Override
@SuppressWarnings("unchecked")
public boolean remove(Object o) {
return (o instanceof AccessOrder>) && remove((E) o);
}
// A fast-path removal
boolean remove(E e) {
if (contains(e)) {
unlink(e);
return true;
}
return false;
}
@Override
public @Nullable E getPrevious(E e) {
return e.getPreviousInAccessOrder();
}
@Override
public void setPrevious(E e, @Nullable E prev) {
e.setPreviousInAccessOrder(prev);
}
@Override
public @Nullable E getNext(E e) {
return e.getNextInAccessOrder();
}
@Override
public void setNext(E e, @Nullable E next) {
e.setNextInAccessOrder(next);
}
/**
* An element that is linked on the {@link Deque}.
*/
interface AccessOrder> {
/**
* Retrieves the previous element or null if either the element is unlinked or the
* first element on the deque.
*/
@Nullable T getPreviousInAccessOrder();
/** Sets the previous element or null if there is no link. */
void setPreviousInAccessOrder(@Nullable T prev);
/**
* Retrieves the next element or null if either the element is unlinked or the last
* element on the deque.
*/
@Nullable T getNextInAccessOrder();
/** Sets the next element or null if there is no link. */
void setNextInAccessOrder(@Nullable T next);
}
}