mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
[docs] Slightly simplify notes about entries order of container functions
This commit is contained in:
@@ -14,9 +14,9 @@ public class SevenZipContainer: Container {
|
||||
/**
|
||||
Processes 7-Zip container and returns an array of `SevenZipEntry` with information and data for all entries.
|
||||
|
||||
- Important: The order of entries is defined by 7-Zip container and, particularly,
|
||||
by the creator of a given 7-Zip container. It is likely that directories will be encountered earlier
|
||||
than files stored in those directories, but one SHOULD NOT rely on any particular order.
|
||||
- Important: The order of entries is defined by 7-Zip container and, particularly, by the creator of a given 7-Zip
|
||||
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
|
||||
particular order is guaranteed.
|
||||
|
||||
- Parameter container: 7-Zip container's data.
|
||||
|
||||
@@ -165,12 +165,12 @@ public class SevenZipContainer: Container {
|
||||
}
|
||||
|
||||
/**
|
||||
Processes 7-Zip container and returns an array of `SevenZipEntryInfo`
|
||||
with information about entries in this container.
|
||||
Processes 7-Zip container and returns an array of `SevenZipEntryInfo` with information about entries in this
|
||||
container.
|
||||
|
||||
- Important: The order of entries is defined by 7-Zip container and, particularly,
|
||||
by the creator of a given 7-Zip container. It is likely that directories will be encountered earlier
|
||||
than files stored in those directories, but one SHOULD NOT rely on any particular order.
|
||||
- Important: The order of entries is defined by 7-Zip container and, particularly, by the creator of a given 7-Zip
|
||||
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
|
||||
particular order is guaranteed.
|
||||
|
||||
- Parameter container: 7-Zip container's data.
|
||||
|
||||
|
||||
@@ -12,9 +12,9 @@ public class TarContainer: Container {
|
||||
/**
|
||||
Processes TAR container and returns an array of `TarEntry` with information and data for all entries.
|
||||
|
||||
- Important: The order of entries is defined by TAR container and, particularly,
|
||||
by the creator of a given TAR container. It is likely that directories will be encountered earlier
|
||||
than files stored in those directories, but one SHOULD NOT rely on any particular order.
|
||||
- Important: The order of entries is defined by TAR container and, particularly, by the creator of a given TAR
|
||||
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
|
||||
particular order is guaranteed.
|
||||
|
||||
- Parameter container: TAR container's data.
|
||||
|
||||
@@ -43,9 +43,9 @@ public class TarContainer: Container {
|
||||
/**
|
||||
Processes TAR container and returns an array of `TarEntryInfo` with information about entries in this container.
|
||||
|
||||
- Important: The order of entries is defined by TAR container and, particularly,
|
||||
by the creator of a given TAR container. It is likely that directories will be encountered earlier
|
||||
than files stored in those directories, but one SHOULD NOT rely on any particular order.
|
||||
- Important: The order of entries is defined by TAR container and, particularly, by the creator of a given TAR
|
||||
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
|
||||
particular order is guaranteed.
|
||||
|
||||
- Parameter container: TAR container's data.
|
||||
|
||||
|
||||
@@ -12,9 +12,9 @@ public class ZipContainer: Container {
|
||||
/**
|
||||
Processes ZIP container and returns an array of `ZipEntry` with information and data for all entries.
|
||||
|
||||
- Important: The order of entries is defined by ZIP container and, particularly,
|
||||
by the creator of a given ZIP container. It is likely that directories will be encountered earlier
|
||||
than files stored in those directories, but one SHOULD NOT rely on any particular order.
|
||||
- Important: The order of entries is defined by ZIP container and, particularly, by the creator of a given ZIP
|
||||
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
|
||||
particular order is guaranteed.
|
||||
|
||||
- Parameter container: ZIP container's data.
|
||||
|
||||
@@ -115,9 +115,9 @@ public class ZipContainer: Container {
|
||||
/**
|
||||
Processes ZIP container and returns an array of `ZipEntryInfo` with information about entries in this container.
|
||||
|
||||
- Important: The order of entries is defined by ZIP container and, particularly,
|
||||
by the creator of a given ZIP container. It is likely that directories will be encountered earlier
|
||||
than files stored in those directories, but one SHOULD NOT rely on any particular order.
|
||||
- Important: The order of entries is defined by ZIP container and, particularly, by the creator of a given ZIP
|
||||
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
|
||||
particular order is guaranteed.
|
||||
|
||||
- Parameter container: ZIP container's data.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user