Uses of Record Class
com.guinetik.hexafun.examples.counter.Counter
Packages that use Counter
-
Uses of Counter in com.guinetik.hexafun.examples.counter
Fields in com.guinetik.hexafun.examples.counter with type parameters of type CounterModifier and TypeFieldDescriptionstatic final UseCaseKey<CounterInputs.AddInput,Result<Counter>> CounterUseCases.ADDstatic final UseCaseKey<CounterInputs.DecrementInput,Result<Counter>> CounterUseCases.DECREMENTstatic final UseCaseKey<CounterInputs.IncrementInput,Result<Counter>> CounterUseCases.INCREMENTMethods in com.guinetik.hexafun.examples.counter that return CounterModifier and TypeMethodDescriptionCounter.add(int amount) CounterInputs.AddInput.counter()Returns the value of thecounterrecord component.CounterInputs.DecrementInput.counter()Returns the value of thecounterrecord component.CounterInputs.IncrementInput.counter()Returns the value of thecounterrecord component.Counter.decrement()Counter.increment()static CounterCounter.of(int value) static CounterCounter.zero()Methods in com.guinetik.hexafun.examples.counter that return types with arguments of type CounterModifier and TypeMethodDescriptionAdd amount to a counter.Decrement a counter.Increment a counter.Methods in com.guinetik.hexafun.examples.counter with parameters of type CounterModifier and TypeMethodDescriptionAdd amount to a counter.Decrement a counter.Increment a counter.Constructors in com.guinetik.hexafun.examples.counter with parameters of type CounterModifierConstructorDescriptionCreates an instance of aAddInputrecord class.DecrementInput(Counter counter) Creates an instance of aDecrementInputrecord class.IncrementInput(Counter counter) Creates an instance of aIncrementInputrecord class.