issue #333 diagrams and index added
This commit is contained in:
@@ -2,14 +2,14 @@ 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);
|
||||
}
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class Axe implements Weapon {
|
||||
@Override public String toString() {
|
||||
return "Axe{}";
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Axe";
|
||||
}
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
/**
|
||||
* Created by crossy on 2016-01-16.
|
||||
*/
|
||||
public class Bow implements Weapon {
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Bow";
|
||||
}
|
||||
}
|
||||
|
@@ -2,6 +2,9 @@ package com.iluwatar.factorykit;
|
||||
|
||||
import java.util.function.Supplier;
|
||||
|
||||
/**
|
||||
* Functional interface that allows adding builder with name to the factory
|
||||
*/
|
||||
public interface Builder {
|
||||
void add(WeaponType name, Supplier<Weapon> supplier);
|
||||
void add(WeaponType name, Supplier<Weapon> supplier);
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class Spear implements Weapon {
|
||||
@Override public String toString() {
|
||||
return "Spear{}";
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Spear";
|
||||
}
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
public class Sword implements Weapon {
|
||||
@Override public String toString() {
|
||||
return "Sword{}";
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Sword";
|
||||
}
|
||||
}
|
||||
|
@@ -1,4 +1,7 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
/**
|
||||
* Interface representing weapon
|
||||
*/
|
||||
public interface Weapon {
|
||||
}
|
||||
|
@@ -4,13 +4,18 @@ import java.util.HashMap;
|
||||
import java.util.function.Consumer;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
/**
|
||||
* Functional interface that represents factory kit. Instance created locally gives an opportunity to strictly define
|
||||
* which objects types the instance of a factory would be able to create. Factory is just a placeholder for builders with
|
||||
* create method to initialize new objects.
|
||||
*/
|
||||
public interface WeaponFactory {
|
||||
|
||||
Weapon create(WeaponType name);
|
||||
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();
|
||||
}
|
||||
static WeaponFactory factory(Consumer<Builder> consumer) {
|
||||
HashMap<WeaponType, Supplier<Weapon>> map = new HashMap<>();
|
||||
consumer.accept(map::put);
|
||||
return name -> map.get(name).get();
|
||||
}
|
||||
}
|
||||
|
@@ -1,8 +1,5 @@
|
||||
package com.iluwatar.factorykit;
|
||||
|
||||
/**
|
||||
* Created by crossy on 2016-01-16.
|
||||
*/
|
||||
public enum WeaponType {
|
||||
SWORD, AXE, BOW, SPEAR
|
||||
SWORD, AXE, BOW, SPEAR
|
||||
}
|
||||
|
Reference in New Issue
Block a user