[JAVA-19668] Clean up (#13767)
This commit is contained in:
parent
4a1641a7c7
commit
7eb3b2ec1a
|
@ -1,71 +0,0 @@
|
||||||
package com.baeldung.reflections;
|
|
||||||
|
|
||||||
import java.lang.reflect.Constructor;
|
|
||||||
import java.lang.reflect.Method;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.regex.Pattern;
|
|
||||||
|
|
||||||
import org.reflections.Reflections;
|
|
||||||
import org.reflections.scanners.MethodAnnotationsScanner;
|
|
||||||
import org.reflections.scanners.MethodParameterScanner;
|
|
||||||
import org.reflections.scanners.ResourcesScanner;
|
|
||||||
import org.reflections.scanners.Scanner;
|
|
||||||
import org.reflections.scanners.SubTypesScanner;
|
|
||||||
import org.reflections.util.ClasspathHelper;
|
|
||||||
import org.reflections.util.ConfigurationBuilder;
|
|
||||||
|
|
||||||
public class ReflectionsApp {
|
|
||||||
|
|
||||||
public Set<Class<? extends Scanner>> getReflectionsSubTypes() {
|
|
||||||
Reflections reflections = new Reflections("org.reflections");
|
|
||||||
Set<Class<? extends Scanner>> scannersSet = reflections.getSubTypesOf(Scanner.class);
|
|
||||||
return scannersSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<Class<?>> getJDKFunctinalInterfaces() {
|
|
||||||
Reflections reflections = new Reflections("java.util.function");
|
|
||||||
Set<Class<?>> typesSet = reflections.getTypesAnnotatedWith(FunctionalInterface.class);
|
|
||||||
return typesSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<Method> getDateDeprecatedMethods() {
|
|
||||||
Reflections reflections = new Reflections(java.util.Date.class, new MethodAnnotationsScanner());
|
|
||||||
Set<Method> deprecatedMethodsSet = reflections.getMethodsAnnotatedWith(Deprecated.class);
|
|
||||||
return deprecatedMethodsSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public Set<Constructor> getDateDeprecatedConstructors() {
|
|
||||||
Reflections reflections = new Reflections(java.util.Date.class, new MethodAnnotationsScanner());
|
|
||||||
Set<Constructor> constructorsSet = reflections.getConstructorsAnnotatedWith(Deprecated.class);
|
|
||||||
return constructorsSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<Method> getMethodsWithDateParam() {
|
|
||||||
Reflections reflections = new Reflections(java.text.SimpleDateFormat.class, new MethodParameterScanner());
|
|
||||||
Set<Method> methodsSet = reflections.getMethodsMatchParams(Date.class);
|
|
||||||
return methodsSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<Method> getMethodsWithVoidReturn() {
|
|
||||||
Reflections reflections = new Reflections(java.text.SimpleDateFormat.class, new MethodParameterScanner());
|
|
||||||
Set<Method> methodsSet = reflections.getMethodsReturn(void.class);
|
|
||||||
return methodsSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<String> getPomXmlPaths() {
|
|
||||||
Reflections reflections = new Reflections(new ResourcesScanner());
|
|
||||||
Set<String> resourcesSet = reflections.getResources(Pattern.compile(".*pom\\.xml"));
|
|
||||||
return resourcesSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<Class<? extends Scanner>> getReflectionsSubTypesUsingBuilder() {
|
|
||||||
Reflections reflections = new Reflections(new ConfigurationBuilder().setUrls(ClasspathHelper.forPackage("org.reflections"))
|
|
||||||
.setScanners(new SubTypesScanner()));
|
|
||||||
|
|
||||||
Set<Class<? extends Scanner>> scannersSet = reflections.getSubTypesOf(Scanner.class);
|
|
||||||
return scannersSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,50 +0,0 @@
|
||||||
package com.baeldung.reflections;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
public class ReflectionsUnitTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenTypeThenGetAllSubTypes() {
|
|
||||||
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
||||||
assertFalse(reflectionsApp.getReflectionsSubTypes()
|
|
||||||
.isEmpty());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenTypeAndUsingBuilderThenGetAllSubTypes() {
|
|
||||||
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
||||||
assertFalse(reflectionsApp.getReflectionsSubTypesUsingBuilder()
|
|
||||||
.isEmpty());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenAnnotationThenGetAllAnnotatedMethods() {
|
|
||||||
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
||||||
assertFalse(reflectionsApp.getDateDeprecatedMethods()
|
|
||||||
.isEmpty());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenAnnotationThenGetAllAnnotatedConstructors() {
|
|
||||||
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
||||||
assertFalse(reflectionsApp.getDateDeprecatedConstructors()
|
|
||||||
.isEmpty());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenParamTypeThenGetAllMethods() {
|
|
||||||
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
||||||
assertFalse(reflectionsApp.getMethodsWithDateParam()
|
|
||||||
.isEmpty());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenReturnTypeThenGetAllMethods() {
|
|
||||||
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
||||||
assertFalse(reflectionsApp.getMethodsWithVoidReturn()
|
|
||||||
.isEmpty());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
## Libraries-7
|
## Libraries-jdk8
|
||||||
|
|
||||||
This module contains articles about various Java libraries.
|
This module contains articles about various Java libraries.
|
||||||
These are small libraries that are relatively easy to use and do not require any separate module of their own.
|
These are small libraries that are relatively easy to use and do not require any separate module of their own.
|
||||||
|
|
Loading…
Reference in New Issue