public OCEnumRef getEnumRef(String fullName) throws JIException {
String[] splitted = fullName.split("\\.");
if (splitted == null || splitted.length != 2) {
throw new RuntimeException("Wrong parameter in getEnumRef (example: СтавкиНДС.БезНДС)");
}
OCEnumCollection collection = getEnumCollection();
OCEnumManager manager = collection.getEnum(splitted[0]);
return manager.getEnumValueRef(splitted[1]);
}