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

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

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

Element.required介绍

暂无

代码示例

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

  1. /**
  2. * Validate if all required fields are present.
  3. *
  4. * @throws StorageException Thrown if the validation failed due to missing field values.
  5. */
  6. @Validate
  7. public final void validateRequiredFields() throws StorageException {
  8. logger.log(Level.FINE, "Validating required fields");
  9. try {
  10. Field[] elementFields = ReflectionUtil.getAllFieldsWithAnnotation(this.getClass(), Element.class);
  11. for (Field field : elementFields) {
  12. field.setAccessible(true);
  13. if (field.getAnnotation(Element.class).required() && field.get(this) == null) {
  14. logger.log(Level.WARNING, "Missing mandatory field {0}#{1}", new Object[] { this.getClass().getSimpleName(), field.getName() });
  15. throw new StorageException("Missing mandatory field " + this.getClass().getSimpleName() + "#" + field.getName());
  16. }
  17. }
  18. }
  19. catch (IllegalAccessException e) {
  20. throw new RuntimeException("IllegalAccessException when validating required fields: ", e);
  21. }
  22. }

代码示例来源: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: 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. }

相关文章