クラス EntityResourceFormatter

java.lang.Object
org.thinkit.generator.entity.engine.formatter.EntityResourceFormatter
すべての実装されたインタフェース:
org.thinkit.generator.common.duke.formatter.JavaResourceFormatter<EntityMatrix,​EntityResourceGroup>

public final class EntityResourceFormatter
extends Object
implements org.thinkit.generator.common.duke.formatter.JavaResourceFormatter<EntityMatrix,​EntityResourceGroup>
EntityMatrix クラスに格納されたリソース情報を基にエンティティリソースを生成する処理を定義したフォーマッタークラスです。

newInstance() メソッドを使用することで EntityResourceFormatter クラスの新しいインスタンスを生成することができます。 EntityResourceFormatter クラスの新しいインスタンスを生成した後は format(EntityMatrix) メソッドを呼び出し整形処理を行ってください。整形処理が正常終了した場合は生成されたリソースが格納された EntityResourceGroup が返却されます。

 操作例:
 
 EntityResourceFormatter.newInstance().format(entityMatrix).foreach(entityResource -> {
      * // do something like
      entityResource.getPackageName();
      entityResource.getClassName();
      entityResource.getResource();
 });
 
 
導入されたバージョン:
1.0.0