Uses of Enum Class
hlcd.enums.Style

Packages that use Style
Package
Description
Contains the enums used in this program.
Takes care of exporting the code found to .bin, .tex and .m (Matlab) file.
Contains the mathematical definition of a "code" along with a validator to ensure the code obtained is valid.
The tools used when searching for a code are found here.
The tests used to help in implementing and testing LongArray.
  • Uses of Style in hlcd.enums

    Methods in hlcd.enums that return Style
    Modifier and Type
    Method
    Description
    static Style
    Style.valueOf​(String name)
    Returns the enum constant of this class with the specified name.
    static Style[]
    Style.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
  • Uses of Style in hlcd.exporter

    Methods in hlcd.exporter with parameters of type Style
    Modifier and Type
    Method
    Description
    void
    CodeExporter.export​(String matrixLabel, String delimiter, String id, boolean spaceBetweenDelimiter, Style style)
    Writes the desired files to disk.
    Constructors in hlcd.exporter with parameters of type Style
    Modifier
    Constructor
    Description
     
    LatexMatrixWriter​(DirectoryCreator dc, CodeParameters cp, Matrix matrix, String matrixLabel, String delimiter, String id, boolean spaceBetweenDelimiter, Style style, boolean printPathToConsole)
    Initializes the LaTeX matrix writer based on the parameters specified.
  • Uses of Style in hlcd.linearCode

    Methods in hlcd.linearCode with parameters of type Style
    Modifier and Type
    Method
    Description
    void
    Code.printCombinations​(String delimiter, Style style)
     
    void
    CodeOperations.printCombinations​(String delimiter, Style style)
    Prints the elements in the combination array on screen with the style type specified.
    void
    Code.printGeneratorMatrix​(boolean addBrackets, Style style, boolean showSize)
     
    void
    Code.printGeneratorMatrix​(String delimiter, boolean addBrackets, Style style, boolean showSize)
     
    void
    CodeOperations.printGeneratorMatrix​(boolean addBrackets, Style style, boolean showSize)
    Prints the current matrix on console with columns separated by a single space.
    void
    CodeOperations.printGeneratorMatrix​(String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the current matrix on console.
  • Uses of Style in hlcd.operations

    Methods in hlcd.operations with parameters of type Style
    Modifier and Type
    Method
    Description
    void
    LongArray.print​(String delimiter, Style style)
    Prints the elements in the combination array on screen as binary values or decimal values.
    void
    Matrix.printMatrix​(boolean addBrackets, Style style, boolean showSize)
     
    void
    Matrix.printMatrix​(long[] matrixArray, byte n, byte base, String delimiter, boolean addBrackets, Style style, boolean showSize)
     
    void
    Matrix.printMatrix​(String delimiter, boolean addBrackets, Style style, boolean showSize)
     
    void
    MatrixOperations.printMatrix​(boolean addBrackets, Style style, boolean showSize)
    Prints the current matrix on console with columns separated by a single space.
    void
    MatrixOperations.printMatrix​(long[] matrixArray, byte n, byte base, String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the specified matrix array on console.
    void
    MatrixOperations.printMatrix​(String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the current matrix on console.
    void
    MatrixPrinter.printMatrix​(long[] matrixArray, byte n, byte base, String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the matrix array on console using the other parameters specified.
    void
    MatrixPrinter.printMatrix​(String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the matrix on console while having the specified delimiter between the columns.
    void
    RandomMatrixGenerator.printMatrix​(boolean addBrackets, Style style, boolean showSize)
    Prints the matrix on console while using the space character as the delimiter between the columns.
    void
    RandomMatrixGenerator.printMatrix​(long[] matrixArray, byte n, byte base, String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the matrix array specified on console using the parameters passed.
    void
    RandomMatrixGenerator.printMatrix​(String delimiter, boolean addBrackets, Style style, boolean showSize)
    Prints the matrix array specified on console using the parameters passed.
    static String
    MatrixPrinter.vectorAsString​(long vector, byte n, byte base, String delimiter, Style style)
    Returns a formatted vector based on the properties specified.
    Constructors in hlcd.operations with parameters of type Style
    Modifier
    Constructor
    Description
     
    MatrixPrinter​(long[] matrixArray, byte n, byte k, byte base, Style style)
    Constructs a simple printer for the matrix specified.
  • Uses of Style in hlcd.testing.arrayTester

    Methods in hlcd.testing.arrayTester with parameters of type Style
    Modifier and Type
    Method
    Description
    void
    ByteArray.print​(String delimiter, Style style)
    Prints the elements in the combination array on screen as binary values or decimal values.