Ejemplo n.º 1
0
 static List<AnnotationKey> loadApiMetaDataError() {
   List<AnnotationKey> apiMetaData = new ArrayList<AnnotationKey>();
   for (AnnotationKey annotationKey : AnnotationKey.values()) {
     if (annotationKey.name().startsWith("ERROR_API_METADATA_")) {
       apiMetaData.add(annotationKey);
     }
   }
   return apiMetaData;
 }