パッケージ pixela.client
インタフェース Quantity
-
- 既知の実装クラスのリスト:
Quantity.FloatQuantity,Quantity.IntQuantity,Quantity.StringQuantity
public interface Quantity
-
-
ネストされたクラスの概要
ネストされたクラス 修飾子とタイプ インタフェース 説明 static classQuantity.FloatQuantitystatic classQuantity.IntQuantitystatic classQuantity.StringQuantity
-
メソッドの概要
すべてのメソッド staticメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 @NotNull java.lang.StringasString()@NotNull Quantitydecrement()static @NotNull Quantityfloating(double quantity)@NotNull Quantityincrement()static @NotNull Quantityinteger(int quantity)static @NotNull Quantitystring(@NotNull java.lang.String quantity)
-
-
-
メソッドの詳細
-
asString
@NotNull @NotNull java.lang.String asString()
-
increment
@NotNull @NotNull Quantity increment()
-
decrement
@NotNull @NotNull Quantity decrement()
-
string
@Contract("_ -> new") @NotNull static @NotNull Quantity string(@NotNull @NotNull java.lang.String quantity)
-
integer
@Contract("_ -> new") @NotNull static @NotNull Quantity integer(int quantity)
-
floating
@Contract("_ -> new") @NotNull static @NotNull Quantity floating(double quantity)
-
-