Enum StringLayoutEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<StringLayoutEnum>

    public enum StringLayoutEnum
    extends java.lang.Enum<StringLayoutEnum>
    Controls strings termination
    • FIXED_LEN (ie. fixed length, trailing nulls trimmed, interior nulls retained)
    • NULL_TERMINATED_UNBOUNDED (ie. null terminated and ignores data instance length)
    • NULL_TERMINATED_BOUNDED (ie. null-terminated and limited to data instance)
    • PASCAL_255 (ie. pascal string, using 1 byte for length field, max 255 char elements)
    • PASCAL_64k (ie. pascal string, using 2 bytes for length field, max 64k char elements)
    • Method Detail

      • values

        public static StringLayoutEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StringLayoutEnum c : StringLayoutEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StringLayoutEnum valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<StringLayoutEnum>
      • isPascal

        public boolean isPascal()
      • isNullTerminated

        public boolean isNullTerminated()