Example #1
0
 /**
  * @return an array containing the class names of the currently available ContentType's [pending]
  *     fetch from a Properties on disk ?
  */
 public static String[] getAvailableContentTypesNames() {
   ContentTypeBasics[] v = ContentTypeBasics.values();
   String[] a = new String[v.length];
   int i = 0;
   for (ContentTypeBasics e : v) a[i++] = e.getContentTypeName();
   return a;
 }