SqlColumnType Enum
  
  Assembly: Hazelcast.Net.dll
  
  
  
    public enum SqlColumnType
   
  Fields
  
    
      
        | BigInt | 
        BIGINT type, represented by java.lang.Long in Java and by long in .NET. 
 | 
      
      
        | Boolean | 
        BOOLEAN type, represented by java.lang.Boolean in Java and by bool in .NET. 
 | 
      
      
        | Date | 
        DATE type, represented by java.lang.LocalDate in Java and by HLocalDate in .NET. 
 | 
      
      
        | Decimal | 
        DECIMAL type, represented by java.lang.BigDecimal in Java and by HBigDecimal in .NET. 
 | 
      
      
        | Double | 
        DOUBLE type, represented by java.lang.Double in Java and by double in .NET. 
 | 
      
      
        | Integer | 
        INTEGER type, represented by java.lang.Integer in Java and by int in .NET. 
 | 
      
      
        | Json | 
        Json type, represented by HazelcastJsonValue 
 | 
      
      
        | Null | 
        The type of the generic SQL NULL literal.  
The only valid value of NULL type is null.
 | 
      
      
        | Object | 
        OBJECT type, could be represented by any Java and .NET class. 
 | 
      
      
        | Real | 
        REAL type, represented by java.lang.Float in Java and by float in .NET. 
 | 
      
      
        | SmallInt | 
        SMALLINT type, represented by java.lang.Short in Java and by short in .NET. 
 | 
      
      
        | Time | 
        TIME type, represented by java.lang.LocalTime in Java and by HLocalTime in .NET. 
 | 
      
      
        | Timestamp | 
        TIMESTAMP type, represented by java.lang.LocalDateTime in Java and by HLocalDateTime in .NET. 
 | 
      
      
        | TimestampWithTimeZone | 
        TIMESTAMP_WITH_TIME_ZONE type, represented by java.lang.OffsetDateTime in Java and by HOffsetDateTime in .NET. 
 | 
      
      
        | TinyInt | 
        TINYINT type, represented by java.lang.Byte in Java and by byte in .NET. 
 | 
      
      
        | Varchar | 
        VARCHAR type, represented by java.lang.String in Java and by string in .NET. 
 |