issue #333 factory kit pattern introduced
This commit is contained in:
15
factory-kit/src/main/java/com/iluwatar/factorykit/App.java
Normal file
15
factory-kit/src/main/java/com/iluwatar/factorykit/App.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class App {
|
||||
|
||||
public static void main(String[] args) {
|
||||
WeaponFactory factory = WeaponFactory.factory(builder -> {
|
||||
builder.add(WeaponType.SWORD, Sword::new);
|
||||
builder.add(WeaponType.AXE, Axe::new);
|
||||
builder.add(WeaponType.SPEAR, Spear::new);
|
||||
builder.add(WeaponType.BOW, Bow::new);
|
||||
});
|
||||
Weapon axe = factory.create(WeaponType.AXE);
|
||||
System.out.println(axe);
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class Axe implements Weapon {
|
||||
@Override public String toString() {
|
||||
return "Axe{}";
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
/**
|
||||
* Created by crossy on 2016-01-16.
|
||||
*/
|
||||
public class Bow implements Weapon {
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
import java.util.function.Supplier;
|
||||
|
||||
public interface Builder {
|
||||
void add(WeaponType name, Supplier<Weapon> supplier);
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class Spear implements Weapon {
|
||||
@Override public String toString() {
|
||||
return "Spear{}";
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class Sword implements Weapon {
|
||||
@Override public String toString() {
|
||||
return "Sword{}";
|
||||
}
|
||||
}
|
@@ -0,0 +1,4 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public interface Weapon {
|
||||
}
|
@@ -0,0 +1,16 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.function.Consumer;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
public interface WeaponFactory {
|
||||
|
||||
Weapon create(WeaponType name);
|
||||
|
||||
static WeaponFactory factory(Consumer<Builder> consumer) {
|
||||
HashMap<WeaponType, Supplier<Weapon>> map = new HashMap<>();
|
||||
consumer.accept(map::put);
|
||||
return name -> map.get(name).get();
|
||||
}
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
/**
|
||||
* Created by crossy on 2016-01-16.
|
||||
*/
|
||||
public enum WeaponType {
|
||||
SWORD, AXE, BOW, SPEAR
|
||||
}
|
Reference in New Issue
Block a user