Skip to content

Commit 837f635

Browse files
authored
Merge pull request #769 from abhijay94/Development
Added adapter pattern and its test case
2 parents 13a0883 + c31c39a commit 837f635

File tree

8 files changed

+69
-3
lines changed

8 files changed

+69
-3
lines changed

src/main/java/com/conversions/BinaryToHexadecimal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public String binToHex(String binStr) {
3636
String hex = "";
3737

3838
int currentBit;
39-
BigInteger tenValue = new BigInteger("10");
39+
BigInteger tenValue = BigInteger.valueOf(10);
4040
while (binary.compareTo(BigInteger.ZERO) != 0) {
4141
// to store decimal equivalent of number formed by 4 decimal digits
4242
int code4 = 0;

src/main/java/com/conversions/DecimalToHexadecimal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public class DecimalToHexadecimal {
66
private static final char[] hexChars = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
7-
private static final BigInteger valueHex = new BigInteger("16");
7+
private static final BigInteger valueHex = BigInteger.valueOf(16);
88

99
/**
1010
* This method converts and decimal number to a Hexadecimal number

src/main/java/com/conversions/DecimalToOctal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public class DecimalToOctal {
66
private static final char[] octalChars = {'0', '1', '2', '3', '4', '5', '6', '7'};
7-
private static final BigInteger valueOctal = new BigInteger("8");
7+
private static final BigInteger valueOctal = BigInteger.valueOf(8);
88

99
/**
1010
* This method converts and decimal number to a octal number
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package src.main.java.com.designpatterns.structural.adapter;
2+
3+
public class BugattiVeyron implements Movable {
4+
@Override
5+
public double getSpeed() {
6+
return 268;
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package src.main.java.com.designpatterns.structural.adapter;
2+
3+
public interface Movable {
4+
// Returns the speed of the movable in MPH
5+
double getSpeed();
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package src.main.java.com.designpatterns.structural.adapter;
2+
3+
/**
4+
* An Adapter pattern acts as a connector between two incompatible interfaces that otherwise cannot be connected
5+
* directly. An Adapter wraps an existing class with a new interface so that it becomes compatible with the client’s
6+
* interface.
7+
* <br>
8+
* The main motive behind using this pattern is to convert an existing interface into another interface that the client
9+
* expects. It’s usually implemented once the application is designed.
10+
*
11+
* @see <a href="https://en.wikipedia.org/wiki/Adapter_pattern">Adapter Pattern</a>
12+
*/
13+
public interface MovableAdapter {
14+
// Returns the speed of the movable in KPH
15+
double getSpeed();
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package src.main.java.com.designpatterns.structural.adapter;
2+
3+
public class MovableAdapterImpl implements MovableAdapter {
4+
private Movable luxuryCars;
5+
6+
public MovableAdapterImpl(Movable luxuryCars) {
7+
this.luxuryCars = luxuryCars;
8+
}
9+
10+
@Override
11+
public double getSpeed() {
12+
return convertMPHtoKMPH(luxuryCars.getSpeed());
13+
}
14+
15+
private double convertMPHtoKMPH(double mph) {
16+
return mph * 1.60934;
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package src.test.java.com.designpatterns.structural.adapter;
2+
3+
import org.junit.Test;
4+
import src.main.java.com.designpatterns.structural.adapter.BugattiVeyron;
5+
import src.main.java.com.designpatterns.structural.adapter.Movable;
6+
import src.main.java.com.designpatterns.structural.adapter.MovableAdapter;
7+
import src.main.java.com.designpatterns.structural.adapter.MovableAdapterImpl;
8+
9+
import static org.junit.Assert.assertEquals;
10+
11+
public class MovableAdapterTest {
12+
@Test
13+
public void testMovableAdapter() {
14+
Movable bugattiVeyron = new BugattiVeyron();
15+
MovableAdapter bugattiVeyronAdapter = new MovableAdapterImpl(bugattiVeyron);
16+
assertEquals(bugattiVeyronAdapter.getSpeed(), 431.30312, 0.00001);
17+
}
18+
}

0 commit comments

Comments
 (0)