パッケージ | 説明 |
---|---|
net.i2p.addressbook |
The addressbook application, which fetches hosts.txt files from subscription URLs via
HTTP and adds new hosts to the local database.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
static HostTxtEntry |
HostTxtParser.parse(java.lang.String inputLine,
boolean allowCommandOnly) |
Return a HostTxtEntry from the contents of the inputLine.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
java.util.Iterator<java.util.Map.Entry<java.lang.String,HostTxtEntry>> |
AddressBook.iterator() |
Return an iterator over the addresses in the AddressBook.
|
java.util.Map.Entry<java.lang.String,HostTxtEntry> |
HostTxtIterator.next() |
'remove' entries will be returned with a null key,
and the value will contain a null name, null dest,
and non-null props.
|
static java.util.Map<java.lang.String,HostTxtEntry> |
HostTxtParser.parse(java.io.File file) |
Return a Map using the contents of the File file.
|
static java.util.Map<java.lang.String,HostTxtEntry> |
HostTxtParser.parse(java.io.File file,
java.util.Map<java.lang.String,HostTxtEntry> map) |
Return a Map using the contents of the File file.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
static java.util.Map<java.lang.String,HostTxtEntry> |
HostTxtParser.parse(java.io.File file,
java.util.Map<java.lang.String,HostTxtEntry> map) |
Return a Map using the contents of the File file.
|
static void |
HostTxtParser.write(java.util.Map<java.lang.String,HostTxtEntry> map,
java.io.File file) |
Write contents of Map map to the File file.
|
コンストラクタ | 説明 |
---|---|
AddressBook(java.util.Map<java.lang.String,HostTxtEntry> addresses) |
Construct an AddressBook from the contents of the Map addresses.
|