Examples of appendBrowserPattern()


Examples of net.sf.uadetector.internal.data.DataBuilder.appendBrowserPattern()

    final DataBuilder builder = new DataBuilder();
    for (final Map.Entry<String, JsonElement> entry : entrySet) {
      final List<BrowserPattern> browserPatterns = deserializeType(context, entry, SerializableDataField.BROWSERPATTERNS,
          BrowserPattern.class);
      for (final BrowserPattern browserPattern : browserPatterns) {
        builder.appendBrowserPattern(browserPattern);
      }
      final List<BrowserType> browserTypes = deserializeType(context, entry, SerializableDataField.BROWSERTYPES, BrowserType.class);
      for (final BrowserType browserType : browserTypes) {
        builder.appendBrowserType(browserType);
      }
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.