Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getFlags (0.14 sec)

  1. src/main/java/jcifs/pac/ASN1Util.java

         */
        public static <T> T as ( Class<T> type, Object object ) throws PACDecodingException {
            if ( !type.isInstance(object) ) {
                throw new PACDecodingException("Incompatible object types " + type + " " + object.getClass());
            }
    
            return type.cast(object);
        }
    
    
        /**
         * 
         * @param type
         * @param enumeration
         * @return next element from enumeration cast to type
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top