org.simpleframework.xml.Element.name()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(7.1k)|赞(0)|评价(0)|浏览(271)

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

Element.name介绍

暂无

代码示例

代码示例来源:origin: Pay-Group/best-pay-sdk

  1. /**
  2. * 对象转map
  3. * @param obj
  4. * @return
  5. */
  6. public static Map<String, String> buildMap(Object obj) {
  7. Map<String, String> map = new HashMap<>();
  8. try {
  9. Class<?> clazz = obj.getClass();
  10. for (Field field : clazz.getDeclaredFields()) {
  11. field.setAccessible(true);
  12. String fieldName = field.getName();
  13. //如果 element 注解 name 字段设置了内容, 使用其当成字段名
  14. Element element = field.getAnnotation(Element.class);
  15. if (element != null && StringUtils.isNotEmpty(element.name())) {
  16. fieldName = element.name();
  17. }
  18. String value = field.get(obj) == null ? "" : String.valueOf(field.get(obj));
  19. map.put(fieldName, value);
  20. }
  21. } catch (Exception e) {
  22. e.printStackTrace();
  23. }
  24. return map;
  25. }

代码示例来源:origin: syncany/syncany

  1. private static TransferPluginOption getOptionFromField(Field field, Class<? extends TransferSettings> transferSettingsClass, int level) {
  2. Element elementAnnotation = field.getAnnotation(Element.class);
  3. Setup setupAnnotation = field.getAnnotation(Setup.class);
  4. boolean hasName = !elementAnnotation.name().equalsIgnoreCase("");
  5. boolean hasDescription = setupAnnotation != null && !setupAnnotation.description().equals("");
  6. boolean hasCallback = setupAnnotation != null && !setupAnnotation.callback().isInterface();
  7. boolean hasConverter = setupAnnotation != null && !setupAnnotation.converter().isInterface();
  8. boolean hasFileType = setupAnnotation != null && setupAnnotation.fileType() != null;
  9. String name = (hasName) ? elementAnnotation.name() : field.getName();
  10. String description = (hasDescription) ? setupAnnotation.description() : field.getName();
  11. FileType fileType = (hasFileType) ? setupAnnotation.fileType() : null;
  12. boolean required = elementAnnotation.required();
  13. boolean sensitive = setupAnnotation != null && setupAnnotation.sensitive();
  14. boolean singular = setupAnnotation != null && setupAnnotation.singular();
  15. boolean visible = setupAnnotation != null && setupAnnotation.visible();
  16. boolean encrypted = field.getAnnotation(Encrypted.class) != null;
  17. Class<? extends TransferPluginOptionCallback> callback = (hasCallback) ? setupAnnotation.callback() : null;
  18. Class<? extends TransferPluginOptionConverter> converter = (hasConverter) ? setupAnnotation.converter() : null;
  19. boolean isNestedOption = TransferSettings.class.isAssignableFrom(field.getType());
  20. if (isNestedOption) {
  21. return createNestedOption(field, level, name, description, fileType, encrypted, sensitive, singular, visible, required, callback, converter);
  22. }
  23. else {
  24. return createNormalOption(field, transferSettingsClass, name, description, fileType, encrypted, sensitive, singular, visible, required, callback, converter);
  25. }
  26. }

代码示例来源:origin: ngallagher/simplexml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: org.simpleframework/simple-xml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: ngallagher/simplexml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: org.simpleframework/simple-xml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: org.restlet.lib/org.simpleframework.simple-xml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: org.restlet.lib/org.simpleframework.simple-xml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: thegrizzlylabs/sardine-android

  1. private Map<String, Field> getEntityFields() {
  2. Map<String, Field> elementsFields = new HashMap<>();
  3. for (Field field : entityClass.getDeclaredFields()) {
  4. Element fieldAnnotation = field.getAnnotation(Element.class);
  5. if (fieldAnnotation != null) {
  6. String name = fieldAnnotation.name().equals("") ? field.getName() : fieldAnnotation.name();
  7. elementsFields.put(name, field);
  8. }
  9. }
  10. return elementsFields;
  11. }

代码示例来源:origin: org.simpleframework/simple-xml

  1. /**
  2. * Constructor for the <code>ElementLabel</code> object. This is
  3. * used to create a label that can convert a XML node into a
  4. * composite object or a primitive type from an XML element.
  5. *
  6. * @param contact this is the field that this label represents
  7. * @param label this is the annotation for the contact
  8. * @param format this is the format used to style this element
  9. */
  10. public ElementLabel(Contact contact, Element label, Format format) {
  11. this.detail = new Introspector(contact, this, format);
  12. this.decorator = new Qualifier(contact);
  13. this.required = label.required();
  14. this.type = contact.getType();
  15. this.override = label.name();
  16. this.expect = label.type();
  17. this.data = label.data();
  18. this.format = format;
  19. this.label = label;
  20. }

代码示例来源:origin: org.restlet.lib/org.simpleframework.simple-xml

  1. /**
  2. * Constructor for the <code>ElementLabel</code> object. This is
  3. * used to create a label that can convert a XML node into a
  4. * composite object or a primitive type from an XML element.
  5. *
  6. * @param contact this is the field that this label represents
  7. * @param label this is the annotation for the contact
  8. * @param format this is the format used to style this element
  9. */
  10. public ElementLabel(Contact contact, Element label, Format format) {
  11. this.detail = new Introspector(contact, this, format);
  12. this.decorator = new Qualifier(contact);
  13. this.required = label.required();
  14. this.type = contact.getType();
  15. this.override = label.name();
  16. this.expect = label.type();
  17. this.data = label.data();
  18. this.format = format;
  19. this.label = label;
  20. }

代码示例来源:origin: ngallagher/simplexml

  1. /**
  2. * Constructor for the <code>ElementLabel</code> object. This is
  3. * used to create a label that can convert a XML node into a
  4. * composite object or a primitive type from an XML element.
  5. *
  6. * @param contact this is the field that this label represents
  7. * @param label this is the annotation for the contact
  8. * @param format this is the format used to style this element
  9. */
  10. public ElementLabel(Contact contact, Element label, Format format) {
  11. this.detail = new Introspector(contact, this, format);
  12. this.decorator = new Qualifier(contact);
  13. this.required = label.required();
  14. this.type = contact.getType();
  15. this.override = label.name();
  16. this.expect = label.type();
  17. this.data = label.data();
  18. this.format = format;
  19. this.label = label;
  20. }

相关文章