Interface ElementaryFile
-
public interface ElementaryFile
Calypso Elementary File.- Since:
- 1.0.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ElementaryFile.Type
The different types of EF.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileData
getData()
Gets the file data.FileHeader
getHeader()
Gets the file header.byte
getSfi()
Gets the associated SFI.
-
-
-
Method Detail
-
getSfi
byte getSfi()
Gets the associated SFI.- Returns:
- The SFI.
- Since:
- 1.0.0
-
getHeader
FileHeader getHeader()
Gets the file header.- Returns:
- Null if header is not yet set.
- Since:
- 1.0.0
-
getData
FileData getData()
Gets the file data.- Returns:
- A not null data reference.
- Since:
- 1.0.0
-
-