2015-08-13 23:54:40 +02:00
---
layout: pattern
title: Adapter
folder: adapter
2015-08-15 18:03:05 +02:00
permalink: /patterns/adapter/
2016-08-30 15:10:34 +02:00
pumlid: DSR14S8m30J0Lg20M7-wEMnDOiPMFDA9j0yyUEtUkzMHJTF7xI1NF4GSLzaxZtncgDVJgCPIpobzv0N2vOKtjgRHTziMI7KBcOXl10thfxB-Nz9dMJd71m00
2015-08-20 21:40:07 +02:00
categories: Structural
2015-09-22 18:25:56 +05:30
tags:
- Java
- Gang Of Four
2015-12-28 15:52:44 +02:00
- Difficulty-Beginner
2015-08-13 23:54:40 +02:00
---
2016-01-03 21:14:30 +01:00
## Also known as
Wrapper
2015-11-04 21:13:32 +02:00
2016-01-03 21:14:30 +01:00
## Intent
Convert the interface of a class into another interface the clients
2015-08-13 23:54:40 +02:00
expect. Adapter lets classes work together that couldn't otherwise because of
incompatible interfaces.
2015-12-01 16:00:31 +09:00

2015-08-13 23:54:40 +02:00
2016-01-03 21:14:30 +01:00
## Applicability
Use the Adapter pattern when
2015-08-13 23:54:40 +02:00
* you want to use an existing class, and its interface does not match the one you need
* you want to create a reusable class that cooperates with unrelated or unforeseen classes, that is, classes that don't necessarily have compatible interfaces
* you need to use several existing subclasses, but it's impractical to adapt their interface by subclassing every one. An object adapter can adapt the interface of its parent class.
2016-01-03 21:14:30 +01:00
## Real world examples
2015-08-13 23:54:40 +02:00
2015-08-15 18:03:05 +02:00
* [java.util.Arrays#asList() ](http://docs.oracle.com/javase/8/docs/api/java/util/Arrays.html#asList%28T...%29 )
2016-08-20 20:49:28 +05:30
* [java.util.Collections#list() ](https://docs.oracle.com/javase/8/docs/api/java/util/Collections.html#list-java.util.Enumeration- )
* [java.util.Collections#enumeration() ](https://docs.oracle.com/javase/8/docs/api/java/util/Collections.html#enumeration-java.util.Collection- )
* [javax.xml.bind.annotation.adapters.XMLAdapter ](http://docs.oracle.com/javase/8/docs/api/javax/xml/bind/annotation/adapters/XmlAdapter.html#marshal-BoundType- )
2015-09-22 18:25:56 +05:30
2016-01-03 21:14:30 +01:00
## Credits
2015-09-22 18:25:56 +05:30
* [Design Patterns: Elements of Reusable Object-Oriented Software ](http://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612 )
2016-01-27 12:55:59 +05:30
* [J2EE Design Patterns ](http://www.amazon.com/J2EE-Design-Patterns-William-Crawford/dp/0596004273/ref=sr_1_2 )