diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index 6807f98..4199ab2 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -14,6 +14,8 @@
+
+
diff --git a/src/com/tofvesson/collections/ShiftingList.java b/src/com/tofvesson/collections/ShiftingList.java
index 7aa2bd7..67b525c 100644
--- a/src/com/tofvesson/collections/ShiftingList.java
+++ b/src/com/tofvesson/collections/ShiftingList.java
@@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
-@SuppressWarnings("unchecked")
+@SuppressWarnings({"unchecked", "ReturnOfInnerClass"})
public class ShiftingList implements List {
/**
* Holder for entries. Dur to reasons, the array holds objects.
@@ -257,19 +257,15 @@ public class ShiftingList implements List {
}
@Override
- public Iterator iterator(){
- return new Iterator<>();
- }
+ public Iterator iterator(){ return new Iterator<>(pop, entries); }
@Override
- public ListIterator listIterator() {
- return new ListIterator<>();
- }
+ public ListIterator listIterator(){ return new ListIterator<>(this); }
@Override
public ListIterator listIterator(int index) {
if(index<0) throw new RuntimeException("Invalid starting point for iterator defined: "+index);
- return new ListIterator<>(index);
+ return new ListIterator<>(this, index);
}
@Override
@@ -280,75 +276,40 @@ public class ShiftingList implements List {
return l;
}
- public class Iterator implements java.util.Iterator{
-
- int counter = 0;
-
- @Override
- public boolean hasNext() {
- return counter Type of object stored in list.
+ */
+ public static class Iterator implements java.util.Iterator{
+ protected int counter = 0;
+ private final int pop;
+ private final Object[] entries;
+ public Iterator(int pop, Object[] entries){ this.pop = pop; this.entries = entries; }
+ @Override public boolean hasNext() { return counter implements java.util.ListIterator{
-
+ /**
+ * List iterator. For making modifications on-the-go while going through list.
+ * @param Type of object stored in list.
+ */
+ public static class ListIterator implements java.util.ListIterator{
protected int counter = 0;
protected boolean opNxt = false;
private Object pEl = null;
-
- public ListIterator(){}
- public ListIterator(int start){ counter = start; }
-
- @Override
- public boolean hasNext() {
- return counter0&&ShiftingList.this.pop!=0;
- }
-
- @Override
- public V previous() {
- opNxt = false;
- return (V)(pEl=entries[--counter]==empty?null:entries[counter]);
- }
-
- @Override
- public int nextIndex() {
- return counter+10&&pop!=0; }
+ @Override public V previous() { opNxt = false; return (V)(pEl=entries[--counter]==empty?null:entries[counter]); }
+ @Override public int nextIndex() { return counter+1 c, String name, Class>... params){
try{
Method m = c.getDeclaredMethod(name, params);
@@ -12,6 +24,52 @@ public class SafeReflection {
}catch(Exception e){}
return null;
}
+
+ /**
+ * Attempts to invoke a supplied static method with the given parameters.
+ * @param m Method to invoke.
+ * @param params Parameters to supply to method.
+ * @return Return value of method or null if method is null.
+ */
+ public static Object invokeStaticMethod(Method m, Object... params){
+ try{ return invokeMethod(null, m, params); }catch(Exception e){}
+ return null;
+ }
+
+ /**
+ * Attempts to invoke a supplied method with the given parameters on the supplied object.
+ * @param inst Object to invoke method in.
+ * @param m Method to invoke.
+ * @param params Parameters to supply to method.
+ * @return Return value of method or null if method is null.
+ */
+ public static Object invokeMethod(Object inst, Method m, Object... params){
+ try{ return m!=null?m.invoke(inst, params):null; }catch(Exception e){}
+ return null;
+ }
+
+ /**
+ * Finds the first method available with the specified name from the class.
+ * Meant to be used in cases where a class only has one version of a method.
+ * Method is accessible.
+ * @param c Class to find method in.
+ * @param name Name of method.
+ * @return Method or null if no method with given name exists.
+ */
+ public static Method getFirstMethod(Class> c, String name){
+ try{
+ Method[] m = c.getDeclaredMethods();
+ for (Method aM : m) if(aM.getName().equals(name)){ aM.setAccessible(true); return aM;}
+ }catch(Exception e){}
+ return null;
+ }
+
+ /**
+ * Gets field object referring to field with specified name in defined class.
+ * @param c Class to find field in.
+ * @param name Name of field.
+ * @return Field or null if no field with specified name exists.
+ */
public static Field getField(Class> c, String name){
try{
Field f = c.getDeclaredField(name);
@@ -20,6 +78,36 @@ public class SafeReflection {
}catch(Exception e){}
return null;
}
+
+ /**
+ * Gets the static object stored in the field with the specified name in the defined class.
+ * @param c Class to find object in.
+ * @param name Name of field.
+ * @return Object or null if object is null or field doesn't exist.
+ */
+ public static Object getStaticFieldObject(Class> c, String name){
+ Field f = getField(c, name);
+ try { return f!=null?f.get(null):null; } catch (Exception e) { }
+ return null;
+ }
+
+ /**
+ * Gets the object stored in the field with the specified name in the class of the defined object.
+ * @param o Object to find object in.
+ * @param name Name of field.
+ * @return Object or null if object is null or field doesn't exist.
+ */
+ public static Object getFieldObject(Object o, String name){
+ Field f = getField(o.getClass(), name);
+ try{ return f!=null?f.get(o):null; }catch(Exception e){}
+ return null;
+ }
+
+ /**
+ * Gets a reference to the enclosing class from a defined inner (nested) object.
+ * @param nested Object instance of a nested class.
+ * @return "this" reference to the outer class or null if class of object instance is static or isn't nested.
+ */
public static Object getEnclosingClassObjectRef(Object nested){
try{
Field f = nested.getClass().getDeclaredField("this$0");
@@ -28,7 +116,11 @@ public class SafeReflection {
}catch(Exception e){}
return null;
}
- public static boolean isNestedClass(Class> c){
- return c.getEnclosingClass()!=null;
- }
+
+ /**
+ * Checks whether a given class is an inner (nested) class.
+ * @param c Class to check.
+ * @return True if class is nested otherwise false.
+ */
+ public static boolean isNestedClass(Class> c){ return c.getEnclosingClass()!=null; }
}