Skip to content

io microsphere collection DelegatingDeque

github-actions[bot] edited this page Apr 11, 2026 · 5 revisions

DelegatingDeque

Type: Class | Module: microsphere-java-core | Package: io.microsphere.collection | Since: 1.0.0

Source: microsphere-java-core/src/main/java/io/microsphere/collection/DelegatingDeque.java

Overview

Delegating Deque

Declaration

public class DelegatingDeque<E> extends DelegatingQueue<E> implements Deque<E>

Author: Mercy

Version Information

  • Introduced in: 1.0.0
  • Current Project Version: 0.2.8-SNAPSHOT

Version Compatibility

This component is tested and compatible with the following Java versions:

Java Version Status
Java 8 ✅ Compatible
Java 11 ✅ Compatible
Java 17 ✅ Compatible
Java 21 ✅ Compatible
Java 25 ✅ Compatible

Usage

Maven Dependency

Add the following dependency to your pom.xml:

<dependency>
    <groupId>io.github.microsphere-projects</groupId>
    <artifactId>microsphere-java-core</artifactId>
    <version>${microsphere-java.version}</version>
</dependency>

Tip: Use the BOM (microsphere-java-dependencies) for consistent version management. See the Getting Started guide.

Import

import io.microsphere.collection.DelegatingDeque;

API Reference

Public Methods

Method Description
reversed The MethodHandle for Deque#reversed() since Java 21

Method Details

reversed

public Deque<E> reversed()

The MethodHandle for Deque#reversed() since Java 21 / private static final MethodHandle reversedMethodHandle = findPublicVirtual(Deque.class, "reversed");

public DelegatingDeque(Deque delegate) { super(delegate); }

Since: Java 21

See Also

  • AbstractDeque

This documentation was auto-generated from the source code of microsphere-java.

Home

annotation-processor

java-annotations

java-core

java-test

jdk-tools

lang-model

Clone this wiki locally