packages/java.lang.native.operator/src/jrelational.ts
        
| lt | 
            lt(expr: T)
                                 | 
                            
| 
                                         Emulate the operator < 
                                            Returns:      
                                any
            
                                         | 
                            
| gt | 
            gt(expr: T)
                                 | 
                            
| 
                                         Emulate the operator > 
                                            Returns:      
                                any
            
                                         | 
                            
| le | 
            le(expr: T)
                                 | 
                            
| 
                                         Emulate the operator <= 
                                            Returns:      
                                any
            
                                         | 
                            
| ge | 
            ge(expr: T)
                                 | 
                            
| 
                                         Emulate the operator >= 
                                            Returns:      
                                any
            
                                         | 
                            
import { Jboolean } from '@j2se-js/java.lang';
export interface JRelational<T> {
  /** Emulate the operator < */
  lt(expr: T): Jboolean;
  /** Emulate the operator > */
  gt(expr: T): Jboolean;
  /** Emulate the operator <= */
  le(expr: T): Jboolean;
  /** Emulate the operator >= */
  ge(expr: T): Jboolean;
}