summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/everge/StageStatus.java
blob: 69125fc5891b5ad572d350520fad4225af65fcd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package bjc.everge;

/**
 * Possible statuses of pairs with respect to exporting.
 * 
 * @author Ben Culkin
 */
public enum StageStatus {
	/**
	 * Only use for staging pairs; don't export.
	 */
	INTERNAL,
	/**
	 * Don't use for staging pairs; do export.
	 */
	EXTERNAL,
	/**
	 * Use for staging pairs; do export.
	 */
	BOTH;
}