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

se.llbit.nbt.ASTNode$State Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package se.llbit.nbt;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Map;
import java.util.HashMap;
import java.util.Set;
import java.util.HashSet;
/**
 * @ast class
 * @declaredat ASTNode$State:4
 */
public class ASTNode$State extends java.lang.Object {
  
  /**
   * @apilevel internal
   */
  public boolean LAST_CYCLE = false;

  

  /**
   * @apilevel internal
   */
  public boolean INTERMEDIATE_VALUE = false;

  

  /**
   * @apilevel internal
   */
  public boolean IN_CIRCLE = false;

  

  /**
   * @apilevel internal
   */
  public int CIRCLE_INDEX = 1;

  

  /**
   * @apilevel internal
   */
  public boolean CHANGE = false;

  

  /**
   * @apilevel internal
   */
  public boolean RESET_CYCLE = false;

  

  /**
   * @apilevel internal
   */
  static public class CircularValue {
    Object value;
    int visited = -1;
  }

  public void reset() {
    IN_CIRCLE = false;
    CIRCLE_INDEX = 1;
    CHANGE = false;
    LAST_CYCLE = false;
  }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy