}
id = id.substring(ACTION_ID_PREFIX.length());
String[] typesArr = id.split("\\.");
List<GroupType> types = new ArrayList<GroupType>();
for (String string : typesArr) {
GroupType type = GroupType.valueOf(string);
types.add(type);
}
return Grouping.createFrom(types);
}