Interface ListType


public interface ListType
列表类型的Get接口
Since:
Java 17+
Author:
Kimi Liu
  • Method Details

    • getObjList

      List<Object> getObjList(String key)
      获取Object型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getStrList

      List<String> getStrList(String key)
      获取String型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getIntList

      List<Integer> getIntList(String key)
      获取Integer型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getShortList

      List<Short> getShortList(String key)
      获取Short型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getBoolList

      List<Boolean> getBoolList(String key)
      获取Boolean型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getLongList

      List<Long> getLongList(String key)
      获取BigDecimal型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getCharList

      List<Character> getCharList(String key)
      获取Character型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getDoubleList

      List<Double> getDoubleList(String key)
      获取Double型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getByteList

      List<Byte> getByteList(String key)
      获取Byte型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getBigDecimalList

      List<BigDecimal> getBigDecimalList(String key)
      获取BigDecimal型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表
    • getBigIntegerList

      List<BigInteger> getBigIntegerList(String key)
      获取BigInteger型属性值列表
      Parameters:
      key - 属性名
      Returns:
      属性值列表