Package acdp.design

Enum ST.OutrowStringLength

java.lang.Object
java.lang.Enum<ST.OutrowStringLength>
acdp.design.ST.OutrowStringLength
All Implemented Interfaces:
Serializable, Comparable<ST.OutrowStringLength>, java.lang.constant.Constable
Enclosing class:
ST

public static enum ST.OutrowStringLength extends Enum<ST.OutrowStringLength>
Defines the constants used to indicate the maximum number of characters of an outrow string.
  • SMALL: 255
  • MEDIUM: 65 535
  • LARGE: 16 777 215
  • GIANT: 4 294 967 295
Depending on the character set of the string the maximum number of characters may be less than the numbers given above.
Author:
Beat Hörmann
  • Enum Constant Details

    • SMALL

      public static final ST.OutrowStringLength SMALL
      Maximum outrow string length: 255 characters. Depending on the character set of the string the maximum number of characters may be less.
    • MEDIUM

      public static final ST.OutrowStringLength MEDIUM
      Maximum outrow string length: 65 535 characters. Depending on the character set of the string the maximum number of characters may be less.
    • LARGE

      public static final ST.OutrowStringLength LARGE
      Maximum outrow string length: 16 777 215 characters. Depending on the character set of the string the maximum number of characters may be less.
    • GIANT

      public static final ST.OutrowStringLength GIANT
      Maximum outrow string length: 4 294 967 295 characters. Depending on the character set of the string the maximum number of characters may be less.
  • Method Details

    • values

      public static ST.OutrowStringLength[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ST.OutrowStringLength valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • limit

      public final int limit()
      Returns the limit. The limit of a string type is connected to the maximum number of characters of a string value as explained in the description of the StringType interface.
      Returns:
      The limit.