// continue to try other possibilities
}
// See if it is one of the scope constants
try {
Access acc = Access.valueOf(item.toUpperCase());
if (access != null && access != acc) {
throw new InvalidAccessValueException("Access attribute can only specifiy one of GLOBAL, PUBLIC, or PRIVATE"); // or internal
}
access = acc;
return;