de.unirostock.sems.bives.ds.GraphEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BiVeS-Core Show documentation
Show all versions of BiVeS-Core Show documentation
BiVeS - BioModel Version Control System
This package provides core functionality
The newest version!
/**
*
*/
package de.unirostock.sems.bives.ds;
/**
* @author Martin Scharm
*
*/
public interface GraphEntity
{
/** The flag for UNMODIFIED entities. */
public static final int UNMODIFIED = 0;
/** The flag for INSERTed entities. */
public static final int INSERT = 1;
/** The flag for DELETEd entities. */
public static final int DELETE = -1;
/** The flag for MODIFIED entities. */
public static final int MODIFIED = 2;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy