Fast-forward master to working and delete working #1
|
@ -1,10 +1,8 @@
|
||||||
package cz.tefek.pluto.io.asl.resource.raid;
|
package cz.tefek.pluto.io.asl.resource.raid;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.HashMap;
|
import javax.annotation.Nullable;
|
||||||
import java.util.Iterator;
|
import java.util.*;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Runtime Assigned ID (or Resource Address ID)
|
* Runtime Assigned ID (or Resource Address ID)
|
||||||
|
@ -13,9 +11,9 @@ public class RAID<E extends IIdentifiable> implements Iterable<E>
|
||||||
{
|
{
|
||||||
private static final int INITIAL_SIZE = 512;
|
private static final int INITIAL_SIZE = 512;
|
||||||
|
|
||||||
private List<E> raid;
|
private final List<E> raid;
|
||||||
|
|
||||||
private Map<String, Integer> reverseRaid;
|
private final Map<String, Integer> reverseRaid;
|
||||||
|
|
||||||
public RAID()
|
public RAID()
|
||||||
{
|
{
|
||||||
|
@ -38,6 +36,7 @@ public class RAID<E extends IIdentifiable> implements Iterable<E>
|
||||||
item.onRegister(pos);
|
item.onRegister(pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
public E getByIntID(int id)
|
public E getByIntID(int id)
|
||||||
{
|
{
|
||||||
if (id < 0 || id >= this.raid.size())
|
if (id < 0 || id >= this.raid.size())
|
||||||
|
@ -48,11 +47,16 @@ public class RAID<E extends IIdentifiable> implements Iterable<E>
|
||||||
return this.raid.get(id);
|
return this.raid.get(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getIDOf(E item)
|
@Nonnull
|
||||||
|
public OptionalInt getIDOf(E item)
|
||||||
{
|
{
|
||||||
return this.reverseRaid.get(item.getStringID());
|
return reverseRaid.containsKey(item.getStringID()) ?
|
||||||
|
OptionalInt.of(reverseRaid.get(item.getStringID()))
|
||||||
|
:
|
||||||
|
OptionalInt.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
@Override
|
@Override
|
||||||
public Iterator<E> iterator()
|
public Iterator<E> iterator()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue