jodd.util.Util类的使用及代码示例

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

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

Util介绍

[英]Some general utilities. All methods are safe as possible and operates with as many types as possible.
[中]一些通用工具。所有方法都是尽可能安全的,并且使用尽可能多的类型。

代码示例

代码示例来源: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: redisson/redisson

  1. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. *
  8. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  9. */
  10. public static boolean equals(String s1, String s2) {
  11. return Util.equals(s1, s2);
  12. }

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

  1. @Test
  2. void testLength() {
  3. assertEquals(0, Util.length(null));
  4. assertEquals(-1, Util.length(1234));
  5. assertEquals(0, Util.length(StringPool.EMPTY));
  6. assertEquals(4, Util.length("abcd"));
  7. Collection<String> coll = new ArrayList<>();
  8. assertEquals(0, Util.length(coll));
  9. coll.add("abcd");
  10. coll.add("1234");
  11. assertEquals(2, Util.length(coll));
  12. Iterator<String> iterator = coll.iterator();
  13. assertEquals(2, Util.length(iterator));
  14. Map<Long, String> map = new HashMap<>();
  15. assertEquals(0, Util.length(map));
  16. map.put(1l, "abcd");
  17. map.put(2l, "1234");
  18. assertEquals(2, Util.length(map));
  19. Integer[] array = new Integer[] { 1, 2, 3, 4, 5 };
  20. assertEquals(5, Util.length(array));
  21. ArrayEnumeration<Integer> ae = new ArrayEnumeration<>(array);
  22. assertEquals(5, Util.length(ae));
  23. }

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

  1. @Test
  2. void testContainsElement() {
  3. assertFalse(Util.containsElement(null, "abcd"));
  4. assertFalse(Util.containsElement(1234, "abcd"));
  5. assertFalse(Util.containsElement("abcd", null));
  6. assertTrue(Util.containsElement("abcd", "bc"));
  7. assertFalse(Util.containsElement("abcd", "xx"));
  8. assertTrue(Util.containsElement(coll, "abcd"));
  9. assertFalse(Util.containsElement(coll, "xx"));
  10. assertTrue(Util.containsElement(iterator, "abcd"));
  11. assertFalse(Util.containsElement(iterator, "xx"));
  12. assertTrue(Util.containsElement(map, "abcd"));
  13. assertFalse(Util.containsElement(map, "xx"));
  14. assertTrue(Util.containsElement(array, 1));
  15. assertFalse(Util.containsElement(array, 10));
  16. ArrayEnumeration<Integer> ae = new ArrayEnumeration<>(array);
  17. assertTrue(Util.containsElement(ae, 1));
  18. assertFalse(Util.containsElement(ae, 10));

代码示例来源: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. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. *
  8. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  9. */
  10. public static boolean equals(final String s1, final String s2) {
  11. return Util.equals(s1, s2);
  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: redisson/redisson

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

代码示例来源: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. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

代码示例来源: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. @Test
  2. void testEquals() {
  3. Object a = new Integer(173);
  4. Object b = new Integer(1);
  5. Object c = new Integer(173);
  6. assertTrue(Util.equals(a, a));
  7. assertTrue(Util.equals(a, c));
  8. assertTrue(Util.equals(c, a));
  9. assertFalse(Util.equals(a, b));
  10. assertFalse(Util.equals(b, a));
  11. assertFalse(Util.equals(a, null));
  12. assertFalse(Util.equals(null, a));
  13. assertTrue(Util.equals(null, null));
  14. }

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

  1. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. *
  8. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  9. */
  10. public static boolean equals(final String s1, final String s2) {
  11. return Util.equals(s1, s2);
  12. }

代码示例来源: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. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  8. */
  9. public static boolean equals(String s1, String s2) {
  10. return Util.equals(s1, s2);
  11. }

代码示例来源: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: fivesmallq/web-data-extractor

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

代码示例来源: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: org.jodd/jodd-core

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

相关文章