public class org.apache.commons.collections.list.FixedSizeList extends org.apache.commons.collections.list.AbstractSerializableListDecorator implements org.apache.commons.collections.BoundedCollection
{
private static final long serialVersionUID;
public static org.apache.commons.collections.list.FixedSizeList fixedSizeList(java.util.List)
{
java.util.List v;
org.apache.commons.collections.list.FixedSizeList v;
v := @parameter: java.util.List;
v = new org.apache.commons.collections.list.FixedSizeList;
specialinvoke v.<org.apache.commons.collections.list.FixedSizeList: void <init>(java.util.List)>(v);
return v;
}
protected void <init>(java.util.List)
{
java.util.List v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.util.List;
specialinvoke v.<org.apache.commons.collections.list.AbstractSerializableListDecorator: void <init>(java.util.List)>(v);
return;
}
public boolean add(java.lang.Object)
{
java.lang.UnsupportedOperationException v;
java.lang.Object v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.lang.Object;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public void add(int, java.lang.Object)
{
java.lang.UnsupportedOperationException v;
int v;
java.lang.Object v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v := @parameter: java.lang.Object;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public boolean addAll(java.util.Collection)
{
java.lang.UnsupportedOperationException v;
org.apache.commons.collections.list.FixedSizeList v;
java.util.Collection v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.util.Collection;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public boolean addAll(int, java.util.Collection)
{
java.lang.UnsupportedOperationException v;
java.util.Collection v;
int v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v := @parameter: java.util.Collection;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public void clear()
{
java.lang.UnsupportedOperationException v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public java.lang.Object get(int)
{
java.util.List v;
int v;
java.lang.Object v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: java.lang.Object get(int)>(v);
return v;
}
public int indexOf(java.lang.Object)
{
java.util.List v;
int v;
java.lang.Object v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.lang.Object;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: int indexOf(java.lang.Object)>(v);
return v;
}
public java.util.Iterator iterator()
{
java.util.List v;
java.util.Iterator v, v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: java.util.Iterator iterator()>();
v = staticinvoke <org.apache.commons.collections.iterators.UnmodifiableIterator: java.util.Iterator unmodifiableIterator(java.util.Iterator)>(v);
return v;
}
public int lastIndexOf(java.lang.Object)
{
java.util.List v;
int v;
java.lang.Object v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.lang.Object;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: int lastIndexOf(java.lang.Object)>(v);
return v;
}
public java.util.ListIterator listIterator()
{
java.util.List v;
org.apache.commons.collections.list.FixedSizeList$FixedSizeListIterator v;
java.util.ListIterator v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v = new org.apache.commons.collections.list.FixedSizeList$FixedSizeListIterator;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: java.util.ListIterator listIterator(int)>(0);
specialinvoke v.<org.apache.commons.collections.list.FixedSizeList$FixedSizeListIterator: void <init>(org.apache.commons.collections.list.FixedSizeList,java.util.ListIterator)>(v, v);
return v;
}
public java.util.ListIterator listIterator(int)
{
java.util.List v;
org.apache.commons.collections.list.FixedSizeList$FixedSizeListIterator v;
java.util.ListIterator v;
int v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v = new org.apache.commons.collections.list.FixedSizeList$FixedSizeListIterator;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: java.util.ListIterator listIterator(int)>(v);
specialinvoke v.<org.apache.commons.collections.list.FixedSizeList$FixedSizeListIterator: void <init>(org.apache.commons.collections.list.FixedSizeList,java.util.ListIterator)>(v, v);
return v;
}
public java.lang.Object remove(int)
{
int v;
java.lang.UnsupportedOperationException v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public boolean remove(java.lang.Object)
{
java.lang.UnsupportedOperationException v;
java.lang.Object v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.lang.Object;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public boolean removeIf(java.util.function.Predicate)
{
java.lang.UnsupportedOperationException v;
org.apache.commons.collections.list.FixedSizeList v;
java.util.function.Predicate v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.util.function.Predicate;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public boolean removeAll(java.util.Collection)
{
java.lang.UnsupportedOperationException v;
org.apache.commons.collections.list.FixedSizeList v;
java.util.Collection v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.util.Collection;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public boolean retainAll(java.util.Collection)
{
java.lang.UnsupportedOperationException v;
org.apache.commons.collections.list.FixedSizeList v;
java.util.Collection v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: java.util.Collection;
v = staticinvoke <org.apache.commons.collections.list.FixedSizeList: java.lang.UnsupportedOperationException unsupportedOperationException()>();
throw v;
}
public java.lang.Object set(int, java.lang.Object)
{
java.util.List v;
int v;
java.lang.Object v, v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v := @parameter: java.lang.Object;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: java.lang.Object set(int,java.lang.Object)>(v, v);
return v;
}
public java.util.List subList(int, int)
{
java.util.List v, v;
int v, v;
org.apache.commons.collections.list.FixedSizeList v, v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v := @parameter: int;
v := @parameter: int;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: java.util.List decorated()>();
v = interfaceinvoke v.<java.util.List: java.util.List subList(int,int)>(v, v);
v = new org.apache.commons.collections.list.FixedSizeList;
specialinvoke v.<org.apache.commons.collections.list.FixedSizeList: void <init>(java.util.List)>(v);
return v;
}
public boolean isFull()
{
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
return 1;
}
public int maxSize()
{
int v;
org.apache.commons.collections.list.FixedSizeList v;
v := @this: org.apache.commons.collections.list.FixedSizeList;
v = virtualinvoke v.<org.apache.commons.collections.list.FixedSizeList: int size()>();
return v;
}
private static java.lang.UnsupportedOperationException unsupportedOperationException()
{
java.lang.UnsupportedOperationException v;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>(java.lang.String)>("List is fixed size");
return v;
}
}