The Adapter pattern is used to allow an existing Queue class to be used as a Stack. A ClassAdapter inherits from the Stack interface and the Queue class, implementing the stack operations by manipulating the underlying queue. An ObjectAdapter composes a Queue instance and implements the Stack interface by delegating to the queue's methods.