30313233343536
} @SuppressWarnings("unchecked") public static <T> Iterable<Text> textOf(Iterable<T> iterable) { Class type = typeOf(iterable); return textOf(new FreudSource(iterable, type)); }
27282930313233
private ClassObjectDsl() { // static utility } public static Iterable<Class> classOf(Iterable<String> iterable) { return classOf(new FreudSource(iterable, String.class)); }
35363738394041
} @SuppressWarnings("unchecked") public static <T> Iterable<CssRule> cssRulesOf(Iterable<T> iterable) { Class type = typeOf(iterable); return cssRulesOf(new FreudSource(iterable, type)); }
31323334353637
} @SuppressWarnings("unchecked") public static <T> Iterable<Property> propertyOf(Iterable<T> iterable) { Class type = typeOf(iterable); return propertyOf(new FreudSource(iterable, type)); }
38394041424344
// static utility } public static <T> Iterable<ClassByteCode> classOf(Iterable<T> iterable) { Class type = typeOf(iterable); return classOf(new FreudSource(iterable, type)); }
32333435363738
} @SuppressWarnings("unchecked") public static <T> Iterable<JavaSource> javaSourceOf(Iterable<T> iterable) { Class type = typeOf(iterable); return javaSourceOf(new FreudSource(iterable, type)); }