Package com.volantis.devrep.repository.impl.devices

Examples of com.volantis.devrep.repository.impl.devices.DevicePattern.match()


        if (devicePatternIterator != null) {
            while(devicePatternIterator.hasNext() && !foundMatch) {
                DevicePattern currentDevicePattern =
                        (DevicePattern)devicePatternIterator.next();

                if (currentDevicePattern.match(userAgentString)) {
                    foundMatch = true;
                    deviceName = currentDevicePattern.getDeviceName();
                }
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.