org.nasdanika.models.echarts.graph.Overflow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graph Show documentation
Show all versions of graph Show documentation
Facilitates generation of ECharts graph datasets
The newest version!
/**
*/
package org.nasdanika.models.echarts.graph;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.common.util.Enumerator;
/**
*
* A representation of the literals of the enumeration 'Overflow',
* and utility methods for working with them.
*
* @see org.nasdanika.models.echarts.graph.GraphPackage#getOverflow()
* @model
* @generated
*/
public enum Overflow implements Enumerator {
/**
* The 'TRUNCATE' literal object.
*
*
* @see #TRUNCATE_VALUE
* @generated
* @ordered
*/
TRUNCATE(0, "TRUNCATE", "truncate"),
/**
* The 'BREAK' literal object.
*
*
* @see #BREAK_VALUE
* @generated
* @ordered
*/
BREAK(1, "BREAK", "break"),
/**
* The 'BREAK ALL' literal object.
*
*
* @see #BREAK_ALL_VALUE
* @generated
* @ordered
*/
BREAK_ALL(2, "BREAK_ALL", "breakAll");
/**
* The 'TRUNCATE' literal value.
*
*
* @see #TRUNCATE
* @model literal="truncate"
* @generated
* @ordered
*/
public static final int TRUNCATE_VALUE = 0;
/**
* The 'BREAK' literal value.
*
*
* @see #BREAK
* @model literal="break"
* @generated
* @ordered
*/
public static final int BREAK_VALUE = 1;
/**
* The 'BREAK ALL' literal value.
*
*
* @see #BREAK_ALL
* @model literal="breakAll"
* @generated
* @ordered
*/
public static final int BREAK_ALL_VALUE = 2;
/**
* An array of all the 'Overflow' enumerators.
*
*
* @generated
*/
private static final Overflow[] VALUES_ARRAY =
new Overflow[] {
TRUNCATE,
BREAK,
BREAK_ALL,
};
/**
* A public read-only list of all the 'Overflow' enumerators.
*
*
* @generated
*/
public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the 'Overflow' literal with the specified literal value.
*
*
* @param literal the literal.
* @return the matching enumerator or null
.
* @generated
*/
public static Overflow get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Overflow result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the 'Overflow' literal with the specified name.
*
*
* @param name the name.
* @return the matching enumerator or null
.
* @generated
*/
public static Overflow getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Overflow result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the 'Overflow' literal with the specified integer value.
*
*
* @param value the integer value.
* @return the matching enumerator or null
.
* @generated
*/
public static Overflow get(int value) {
switch (value) {
case TRUNCATE_VALUE: return TRUNCATE;
case BREAK_VALUE: return BREAK;
case BREAK_ALL_VALUE: return BREAK_ALL;
}
return null;
}
/**
*
*
* @generated
*/
private final int value;
/**
*
*
* @generated
*/
private final String name;
/**
*
*
* @generated
*/
private final String literal;
/**
* Only this class can construct instances.
*
*
* @generated
*/
private Overflow(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
*
*
* @generated
*/
@Override
public int getValue() {
return value;
}
/**
*
*
* @generated
*/
@Override
public String getName() {
return name;
}
/**
*
*
* @generated
*/
@Override
public String getLiteral() {
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
*
*
* @generated
*/
@Override
public String toString() {
return literal;
}
} //Overflow