jodd.util.Util.toString()方法的使用及代码示例

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

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

Util.toString介绍

[英]Returns string representation of an object, while checking for null.
[中]

代码示例

代码示例来源:origin: oblac/jodd

  1. public XmlDeclaration(final Document ownerDocument, final CharSequence version, final CharSequence encoding, final CharSequence standalone) {
  2. super(ownerDocument, NodeType.XML_DECLARATION, "xml");
  3. this.version = Util.toString(version);
  4. this.encoding = Util.toString(encoding);
  5. this.standalone = Util.toString(standalone);
  6. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void doctype(final Doctype doctype) {
  3. if (!enabled) {
  4. return;
  5. }
  6. DocumentType documentType = new DocumentType(rootNode,
  7. Util.toString(doctype.getName()),
  8. Util.toString(doctype.getPublicIdentifier()),
  9. Util.toString(doctype.getSystemIdentifier())
  10. );
  11. parentNode.addChild(documentType);
  12. }

代码示例来源:origin: oblac/jodd

  1. public Element(final Document ownerNode, final Tag tag, final boolean voidElement, final boolean selfClosed) {
  2. super(ownerNode, NodeType.ELEMENT, Util.toString(tag.getName()));
  3. this.voidElement = voidElement;
  4. this.selfClosed = selfClosed;
  5. this.rawTag = tag.isRawTag();
  6. int attrCount = tag.getAttributeCount();
  7. for (int i = 0; i < attrCount; i++) {
  8. String key = Util.toString(tag.getAttributeName(i));
  9. String value = Util.toString(tag.getAttributeValue(i));
  10. setAttribute(key, value);
  11. }
  12. }

代码示例来源:origin: oblac/jodd

  1. @Test
  2. void testToString() {
  3. assertNull(Util.toString(null));
  4. assertEquals("abcd", Util.toString("abcd"));
  5. assertEquals("1234", Util.toString(1234));
  6. assertEquals("1234.0", Util.toString(1234d));
  7. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void tag(final Tag tag) {
  3. if (!insideConditionalComment) {
  4. if (tag.nameEquals(T_LINK)) {
  5. CharSequence type = tag.getAttributeValue("type");
  6. if (type != null && CharSequenceUtil.equalsIgnoreCase(type, "text/css")) {
  7. String media = Util.toString(tag.getAttributeValue("media"));
  8. if (media == null || media.contains("screen")) {
  9. String href = Util.toString(tag.getAttributeValue("href"));
  10. if (cssBundleAction.acceptLink(href)) {
  11. String link = cssBundleAction.processLink(href);
  12. if (link != null) {
  13. tag.setAttribute("href", link);
  14. super.tag(tag);
  15. }
  16. return;
  17. }
  18. }
  19. }
  20. }
  21. }
  22. super.tag(tag);
  23. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void script(final Tag tag, final CharSequence body) {
  3. if (!insideConditionalComment) {
  4. String src = Util.toString(tag.getAttributeValue("src"));
  5. if (src == null) {
  6. super.script(tag, body);
  7. return;
  8. }
  9. if (jsBundleAction.acceptLink(src)) {
  10. String link = jsBundleAction.processLink(src);
  11. if (link != null) {
  12. tag.setAttributeValue("src", link);
  13. super.script(tag, body);
  14. }
  15. return;
  16. }
  17. }
  18. super.script(tag, body);
  19. }

代码示例来源:origin: org.jodd/jodd-lagarto

  1. public XmlDeclaration(final Document ownerDocument, final CharSequence version, final CharSequence encoding, final CharSequence standalone) {
  2. super(ownerDocument, NodeType.XML_DECLARATION, "xml");
  3. this.version = Util.toString(version);
  4. this.encoding = Util.toString(encoding);
  5. this.standalone = Util.toString(standalone);
  6. }

代码示例来源:origin: fivesmallq/web-data-extractor

  1. public XmlDeclaration(Document ownerDocument, CharSequence version, CharSequence encoding, CharSequence standalone) {
  2. super(ownerDocument, NodeType.XML_DECLARATION, "xml");
  3. this.version = Util.toString(version);
  4. this.encoding = Util.toString(encoding);
  5. this.standalone = Util.toString(standalone);
  6. }

代码示例来源:origin: org.jodd/jodd-lagarto

  1. @Override
  2. public void doctype(final Doctype doctype) {
  3. if (!enabled) {
  4. return;
  5. }
  6. DocumentType documentType = new DocumentType(rootNode,
  7. Util.toString(doctype.getName()),
  8. Util.toString(doctype.getPublicIdentifier()),
  9. Util.toString(doctype.getSystemIdentifier())
  10. );
  11. parentNode.addChild(documentType);
  12. }

代码示例来源:origin: fivesmallq/web-data-extractor

  1. public void doctype(Doctype doctype) {
  2. if (!enabled) {
  3. return;
  4. }
  5. DocumentType documentType = new DocumentType(rootNode,
  6. Util.toString(doctype.getName()),
  7. Util.toString(doctype.getPublicIdentifier()),
  8. Util.toString(doctype.getSystemIdentifier())
  9. );
  10. parentNode.addChild(documentType);
  11. }

代码示例来源:origin: fivesmallq/web-data-extractor

  1. public Element(Document ownerNode, Tag tag, boolean voidElement, boolean selfClosed) {
  2. super(ownerNode, NodeType.ELEMENT, Util.toString(tag.getName()));
  3. this.voidElement = voidElement;
  4. this.selfClosed = selfClosed;
  5. this.rawTag = tag.isRawTag();
  6. int attrCount = tag.getAttributeCount();
  7. for (int i = 0; i < attrCount; i++) {
  8. String key = Util.toString(tag.getAttributeName(i));
  9. String value = Util.toString(tag.getAttributeValue(i));
  10. setAttribute(key, value);
  11. }
  12. }

代码示例来源:origin: org.jodd/jodd-lagarto

  1. public Element(final Document ownerNode, final Tag tag, final boolean voidElement, final boolean selfClosed) {
  2. super(ownerNode, NodeType.ELEMENT, Util.toString(tag.getName()));
  3. this.voidElement = voidElement;
  4. this.selfClosed = selfClosed;
  5. this.rawTag = tag.isRawTag();
  6. int attrCount = tag.getAttributeCount();
  7. for (int i = 0; i < attrCount; i++) {
  8. String key = Util.toString(tag.getAttributeName(i));
  9. String value = Util.toString(tag.getAttributeValue(i));
  10. setAttribute(key, value);
  11. }
  12. }

代码示例来源:origin: org.jodd/jodd-htmlstapler

  1. @Override
  2. public void tag(final Tag tag) {
  3. if (!insideConditionalComment) {
  4. if (tag.nameEquals(T_LINK)) {
  5. CharSequence type = tag.getAttributeValue("type");
  6. if (type != null && CharSequenceUtil.equalsIgnoreCase(type, "text/css")) {
  7. String media = Util.toString(tag.getAttributeValue("media"));
  8. if (media == null || media.contains("screen")) {
  9. String href = Util.toString(tag.getAttributeValue("href"));
  10. if (cssBundleAction.acceptLink(href)) {
  11. String link = cssBundleAction.processLink(href);
  12. if (link != null) {
  13. tag.setAttribute("href", link);
  14. super.tag(tag);
  15. }
  16. return;
  17. }
  18. }
  19. }
  20. }
  21. }
  22. super.tag(tag);
  23. }

代码示例来源:origin: org.jodd/jodd-htmlstapler

  1. @Override
  2. public void script(final Tag tag, final CharSequence body) {
  3. if (!insideConditionalComment) {
  4. String src = Util.toString(tag.getAttributeValue("src"));
  5. if (src == null) {
  6. super.script(tag, body);
  7. return;
  8. }
  9. if (jsBundleAction.acceptLink(src)) {
  10. String link = jsBundleAction.processLink(src);
  11. if (link != null) {
  12. tag.setAttributeValue("src", link);
  13. super.script(tag, body);
  14. }
  15. return;
  16. }
  17. }
  18. super.script(tag, body);
  19. }

相关文章