package org.ovirt.engine.core.common.businessentities; import java.util.HashMap; public enum VDSNiceType implements Identifiable { RHEL(0), RHEVH(2); private int intValue; private static final HashMap<Integer, VDSNiceType> mappings = new HashMap<>(); static { for (VDSNiceType type : values()) { mappings.put(type.getValue(), type); } } private VDSNiceType(int value) { intValue = value; } @Override public int getValue() { return intValue; } public static VDSNiceType forValue(int value) { return mappings.get(value); } }