이 콘텐츠는 선택한 언어로 제공되지 않습니다.
24.7. Working with Data types
24.7.1. Primitives / Basic Types 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
This section describes the support for basic data types. On the server side, these values are generally compatible with either their primitive type, or their corresponding wrapper class.
24.7.1.1. String 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Use JavaScript String objects to set String parameter values.
24.7.1.2. Number 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Seam supports all Java-supported number types. On the client side, number values are always serialized as their String representation. They are converted to the correct destination type on the server side. Conversion into either a primitive or wrapper type is supported for
Byte
, Double
, Float
, Integer
, Long
and Short
types.
24.7.1.3. Boolean 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Booleans are represented client-side by JavaScript Boolean values, and server-side by a Java Boolean.