当前位置: 首页>>代码示例>>Java>>正文


Java EnumMap.putAll方法代码示例

本文整理汇总了Java中java.util.EnumMap.putAll方法的典型用法代码示例。如果您正苦于以下问题:Java EnumMap.putAll方法的具体用法?Java EnumMap.putAll怎么用?Java EnumMap.putAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.util.EnumMap的用法示例。


在下文中一共展示了EnumMap.putAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: DecodeThread

import java.util.EnumMap; //导入方法依赖的package包/类
DecodeThread(CaptureActivity activity,
             Collection<BarcodeFormat> decodeFormats,
             Map<DecodeHintType,?> baseHints,
             String characterSet,
             ResultPointCallback resultPointCallback) {

  this.activity = activity;
  handlerInitLatch = new CountDownLatch(1);

  hints = new EnumMap(DecodeHintType.class);
  if (baseHints != null) {
    hints.putAll(baseHints);
  }

  // The prefs can't change while the thread is running, so pick them up once here.
  if (decodeFormats == null || decodeFormats.isEmpty()) {
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
    decodeFormats = EnumSet.noneOf(BarcodeFormat.class);
    if (prefs.getBoolean(PerferenceKey.KEY_DECODE_1D_PRODUCT, true)) {
      decodeFormats.addAll(DecodeFormatManager.PRODUCT_FORMATS);
    }
    if (prefs.getBoolean(PerferenceKey.KEY_DECODE_1D_INDUSTRIAL, true)) {
      decodeFormats.addAll(DecodeFormatManager.INDUSTRIAL_FORMATS);
    }
    if (prefs.getBoolean(PerferenceKey.KEY_DECODE_QR, true)) {
      decodeFormats.addAll(DecodeFormatManager.QR_CODE_FORMATS);
    }
    if (prefs.getBoolean(PerferenceKey.KEY_DECODE_DATA_MATRIX, true)) {
      decodeFormats.addAll(DecodeFormatManager.DATA_MATRIX_FORMATS);
    }
    if (prefs.getBoolean(PerferenceKey.KEY_DECODE_AZTEC, false)) {
      decodeFormats.addAll(DecodeFormatManager.AZTEC_FORMATS);
    }
    if (prefs.getBoolean(PerferenceKey.KEY_DECODE_PDF417, false)) {
      decodeFormats.addAll(DecodeFormatManager.PDF417_FORMATS);
    }
  }
  hints.put(DecodeHintType.POSSIBLE_FORMATS, decodeFormats);

  if (characterSet != null) {
    hints.put(DecodeHintType.CHARACTER_SET, characterSet);
  }
  hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
  Log.i("DecodeThread", "Hints: " + hints);
}
 
开发者ID:yun2win,项目名称:tvConnect_android,代码行数:46,代码来源:DecodeThread.java


注:本文中的java.util.EnumMap.putAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。