クラス 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
-
メソッドの概要
修飾子とタイプ メソッド 説明 boolean
equals(Object o)
EntityResourceGroup
format(@NonNull EntityMatrix entityMatrix)
int
hashCode()
static EntityResourceFormatter
newInstance()
String
toString()
-
メソッドの詳細
-
format
- 定義:
format
インタフェース内org.thinkit.generator.common.duke.formatter.JavaResourceFormatter<EntityMatrix,EntityResourceGroup>
-
toString
-
equals
-
hashCode
public int hashCode() -
newInstance
-