org.apache.commons.validator.Var.clone()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(165)

本文整理了Java中org.apache.commons.validator.Var.clone()方法的一些代码示例,展示了Var.clone()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Var.clone()方法的具体详情如下:
包路径:org.apache.commons.validator.Var
类名称:Var
方法名:clone

Var.clone介绍

[英]Creates and returns a copy of this object.
[中]创建并返回此对象的副本。

代码示例

代码示例来源:origin: commons-validator/commons-validator

  1. /**
  2. * Makes a deep copy of a <code>Map</code> if the values are
  3. * <code>Msg</code>, <code>Arg</code>, or <code>Var</code>. Otherwise,
  4. * it is a shallow copy.
  5. *
  6. * @param map The source Map to copy.
  7. *
  8. * @return A copy of the <code>Map</code> that was passed in.
  9. */
  10. public static Map<String, Object> copyMap(Map<String, Object> map) {
  11. Map<String, Object> results = new HashMap<String, Object>();
  12. Iterator<Entry<String, Object>> i = map.entrySet().iterator();
  13. while (i.hasNext()) {
  14. Entry<String, Object> entry = i.next();
  15. String key = entry.getKey();
  16. Object value = entry.getValue();
  17. if (value instanceof Msg) {
  18. results.put(key, ((Msg) value).clone());
  19. } else if (value instanceof Arg) {
  20. results.put(key, ((Arg) value).clone());
  21. } else if (value instanceof Var) {
  22. results.put(key, ((Var) value).clone());
  23. } else {
  24. results.put(key, value);
  25. }
  26. }
  27. return results;
  28. }

代码示例来源:origin: commons-validator/commons-validator

  1. results.put(key, ((Arg) value).clone());
  2. } else if (value instanceof Var) {
  3. results.put(key, ((Var) value).clone());
  4. } else {
  5. results.put(key, value);

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.validator

  1. /**
  2. * Makes a deep copy of a <code>Map</code> if the values are
  3. * <code>Msg</code>, <code>Arg</code>, or <code>Var</code>. Otherwise,
  4. * it is a shallow copy.
  5. *
  6. * @param map The source Map to copy.
  7. *
  8. * @return A copy of the <code>Map</code> that was passed in.
  9. */
  10. public static Map copyMap(Map map) {
  11. Map results = new HashMap();
  12. Iterator iter = map.keySet().iterator();
  13. while (iter.hasNext()) {
  14. String key = (String) iter.next();
  15. Object value = map.get(key);
  16. if (value instanceof Msg) {
  17. results.put(key, ((Msg) value).clone());
  18. } else if (value instanceof Arg) {
  19. results.put(key, ((Arg) value).clone());
  20. } else if (value instanceof Var) {
  21. results.put(key, ((Var) value).clone());
  22. } else {
  23. results.put(key, value);
  24. }
  25. }
  26. return results;
  27. }

代码示例来源:origin: de.knightsoft-net/gwt-commons-validator

  1. /**
  2. * Makes a deep copy of a <code>Map</code> if the values are
  3. * <code>Msg</code>, <code>Arg</code>, or <code>Var</code>. Otherwise,
  4. * it is a shallow copy.
  5. *
  6. * @param map The source Map to copy.
  7. *
  8. * @return A copy of the <code>Map</code> that was passed in.
  9. */
  10. @GwtIncompatible("incompatible method")
  11. public static Map<String, Object> copyMap(Map<String, Object> map) {
  12. Map<String, Object> results = new HashMap<String, Object>();
  13. Iterator<Entry<String, Object>> i = map.entrySet().iterator();
  14. while (i.hasNext()) {
  15. Entry<String, Object> entry = i.next();
  16. String key = entry.getKey();
  17. Object value = entry.getValue();
  18. if (value instanceof Msg) {
  19. results.put(key, ((Msg) value).clone());
  20. } else if (value instanceof Arg) {
  21. results.put(key, ((Arg) value).clone());
  22. } else if (value instanceof Var) {
  23. results.put(key, ((Var) value).clone());
  24. } else {
  25. results.put(key, value);
  26. }
  27. }
  28. return results;
  29. }

代码示例来源:origin: de.knightsoft-net/gwt-commons-validator

  1. results.put(key, ((Arg) value).clone());
  2. } else if (value instanceof Var) {
  3. results.put(key, ((Var) value).clone());
  4. } else {
  5. results.put(key, value);

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.validator

  1. results.put(key, ((Arg) value).clone());
  2. } else if (value instanceof Var) {
  3. results.put(key, ((Var) value).clone());
  4. } else {
  5. results.put(key, value);

相关文章