All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hyperfoil.core.session.IntVar Maven / Gradle / Ivy

There is a newer version: 0.27.1
Show newest version
package io.hyperfoil.core.session;

import io.hyperfoil.api.session.Session;

public class IntVar implements Session.Var {
   private boolean set;
   private int value;

   IntVar(SessionImpl session) {
      session.registerVar(this);
   }

   public static IntVar[] newArray(Session session, int size) {
      IntVar[] array = new IntVar[size];
      for (int i = 0; i < array.length; ++i) array[i] = new IntVar((SessionImpl) session);
      return array;
   }

   @Override
   public Session.VarType type() {
      return Session.VarType.INTEGER;
   }

   @Override
   public int intValue(Session session) {
      return value;
   }

   @Override
   public boolean isSet() {
      return set;
   }

   @Override
   public void unset() {
      set = false;
   }

   public int get() {
      assert set;
      return value;
   }

   public void set(int value) {
      this.value = value;
      this.set = true;
   }

   public void add(int delta) {
      assert set;
      this.value += delta;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy