Interface AggregateId
-
public interface AggregateIdThis is an interface for representing aggregate IDs. / 集約IDを表すためのインターフェース。
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringasString()Returns the string representation.java.lang.StringgetTypeName()Returns the type name.java.lang.StringgetValue()Returns the value.
-
-
-
Method Detail
-
getTypeName
@Nonnull java.lang.String getTypeName()
Returns the type name. / 型名を返します。- Returns:
- type name / 型名
-
getValue
@Nonnull java.lang.String getValue()
Returns the value. / 値を返します。- Returns:
- value / 値
-
asString
@Nonnull java.lang.String asString()
Returns the string representation. / 文字列表現を返します。- Returns:
- string representation / 文字列表現
-
-