com.artemis.model.ComponentReference Maven / Gradle / Ivy
package com.artemis.model;
public enum ComponentReference {
REQUIRED("R"), ANY("A"), OPTIONAL("O"), EXCLUDED("X"), NOT_REFERENCED("");
public final String symbol;
private ComponentReference(String symbol) {
this.symbol = symbol;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy