org.bedework.util.misc.Util类的使用及代码示例

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

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

Util介绍

暂无

代码示例

代码示例来源:origin: org.bedework/bw-util-dav

  1. /**
  2. */
  3. public DavUtil(final List<Header> extraHeaders) {
  4. this();
  5. if (!Util.isEmpty(extraHeaders)) {
  6. this.extraHeaders = new ArrayList<>(extraHeaders);
  7. }
  8. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public static String makeKey(final String collectionHref,
  2. final String entityName) {
  3. if (entityName == null) {
  4. return collectionHref;
  5. }
  6. return Util.buildPath(false, collectionHref,
  7. "/",
  8. entityName);
  9. }

代码示例来源:origin: org.bedework/bw-access

  1. @Override
  2. public int compareTo(final CurrentAccess that) {
  3. if (this == that) {
  4. return 0;
  5. }
  6. int res = Util.compare(aclChars, that.aclChars);
  7. if (res != 0) {
  8. return res;
  9. }
  10. res = Util.cmpObjval(privileges, that.privileges);
  11. if (res != 0) {
  12. return res;
  13. }
  14. return Util.cmpBoolval(accessAllowed, that.accessAllowed);
  15. }

代码示例来源:origin: org.bedework/bw-caldav-util

  1. public void copyForAlias(final BaseEntityChangeType copy,
  2. final String collectionHref) {
  3. final String[] split = Util.splitName(href);
  4. copy.href = Util.buildPath(href.endsWith("/"), collectionHref,
  5. "/", split[1]);
  6. copy.changedBy = changedBy;
  7. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public boolean differsFrom(final BwAttendee val) {
  3. return (Util.compareStrings(val.getPartstat(), getPartstat()) != 0) ||
  4. (Util.compareStrings(val.getCn(), getCn()) != 0) ||
  5. (Util.compareStrings(val.getCuType(), getCuType()) != 0) ||
  6. (Util.compareStrings(val.getDelegatedFrom(), getDelegatedFrom()) != 0) ||
  7. (Util.compareStrings(val.getDelegatedTo(), getDelegatedTo()) != 0) ||
  8. (Util.compareStrings(val.getDir(), getDir()) != 0) ||
  9. (Util.compareStrings(val.getLanguage(), getLanguage()) != 0) ||
  10. (Util.compareStrings(val.getMember(), getMember()) != 0) ||
  11. (Util.cmpBoolval(val.getRsvp(), getRsvp()) != 0) ||
  12. (Util.compareStrings(val.getRole(), getRole()) != 0) ||
  13. (Util.compareStrings(val.getSentByVal(), getSentByVal()) != 0) ||
  14. (Util.compareStrings(val.getAttendeeUri(), getAttendeeUri()) != 0) ||
  15. (Util.cmpIntval(val.getScheduleAgent(), getScheduleAgent()) != 0);
  16. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-ical

  1. if (!Util.isEmpty(xcompProps)) {
  2. final BwXproperty xcompProp = xcompProps.get(0);
  3. final String xcompPropVal = xcompProp.getValue();
  4. info = Util.decodeArray(relx);
  5. URI uri = Util.validURI(strval);
  6. if (uri != null) {
  7. pl.add(new Url(uri));

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public int compareTo(final Xpar o) {
  3. if (o == null) {
  4. return 1;
  5. }
  6. final int cmp = Util.cmpObjval(getName(), o.getName());
  7. if (cmp != 0) {
  8. return cmp;
  9. }
  10. return Util.cmpObjval(getValue(), o.getValue());
  11. }
  12. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. final String namePart) {
  2. if (getPublick()) {
  3. setColPath(Util.buildPath(true,
  4. "/public",
  5. "/",
  6. homeDir = userRoot;
  7. } else {
  8. homeDir = Util.pathElement(1, principal.getPrincipalRef());
  9. setColPath(Util.buildPath(true,
  10. "/",
  11. homeDir,

代码示例来源:origin: org.bedework/bw-util-servlet

  1. /** Get a request parameter stripped of white space. Return null for zero
  2. * length.
  3. *
  4. * @param name name of parameter
  5. * @return String value
  6. */
  7. public String getReqPar(final String name) {
  8. return Util.checkNull(request.getParameter(name));
  9. }

代码示例来源:origin: org.bedework/bw-util2-calendar

  1. public int compareTo(final ValueTypeEntry o) {
  2. int res = typeElement.getNamespaceURI().compareTo(o.typeElement.getNamespaceURI());
  3. if (res != 0) {
  4. return res;
  5. }
  6. res = typeElement.getLocalPart().compareTo(o.typeElement.getLocalPart());
  7. if (res != 0) {
  8. return res;
  9. }
  10. return Util.compareStrings(value, o.value);
  11. }

代码示例来源:origin: org.bedework/bw-util-config

  1. return Util.propertyReplace(ndval,
  2. new Util.PropertiesPropertyFetcher(System.getProperties()));

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public int compareTo(final BwResource that) {
  3. if (this == that) {
  4. return 0;
  5. }
  6. int res = Util.cmpObjval(getColPath(), that.getColPath());
  7. if (res != 0) {
  8. return res;
  9. }
  10. return Util.cmpObjval(getName(), that.getName());
  11. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. final String namePart) {
  2. if (getPublick()) {
  3. setColPath(Util.buildPath(true,
  4. "/public",
  5. "/",
  6. homeDir = props.getUserCalendarRoot();
  7. } else {
  8. homeDir = Util.pathElement(1, principal.getPrincipalRef());
  9. setColPath(Util.buildPath(true,
  10. "/",
  11. homeDir,

代码示例来源:origin: org.bedework/bw-util-servlet

  1. /** Get a request parameter stripped of white space. Return default for null
  2. * or zero length.
  3. *
  4. * @param name name of parameter
  5. * @param def default value
  6. * @return String value
  7. */
  8. public String getReqPar(final String name, final String def) {
  9. final String s = Util.checkNull(request.getParameter(name));
  10. if (s != null) {
  11. return s;
  12. }
  13. return def;
  14. }

代码示例来源:origin: org.bedework/bw-util2-calendar

  1. public int compareTo(final BaseEntityWrapper o) {
  2. int res = Util.compareStrings(getName().getLocalPart(),
  3. o.getName().getLocalPart());
  4. if (res != 0) {
  5. return res;
  6. }
  7. return Util.compareStrings(getName().getNamespaceURI(),
  8. o.getName().getNamespaceURI());
  9. }

代码示例来源:origin: org.bedework/bw-util-jmx

  1. pfile.put(o, Util.propertyReplace(pfile.getProperty((String)o),
  2. ppf));

代码示例来源:origin: org.bedework/bw-util-dav

  1. /**
  2. * @param nm a QName
  3. * @return DavProp or null
  4. */
  5. public DavProp findProp(final QName nm) {
  6. if (Util.isEmpty(propVals)) {
  7. return null;
  8. }
  9. for (DavProp dp: propVals) {
  10. if (nm.equals(dp.name)) {
  11. return dp;
  12. }
  13. }
  14. return null;
  15. }
  16. @Override

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public static String makePrincipalHref(final String id,
  2. final int whoType) throws AccessException {
  3. if (isPrincipal(id)) {
  4. return id;
  5. }
  6. final String root = fromWho.get(whoType);
  7. if (root == null) {
  8. throw new AccessException(CalFacadeException.unknownPrincipalType);
  9. }
  10. return Util.buildPath(true, root, "/", id);
  11. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-api

  1. @Override
  2. public int compareTo(final SynchReportItem that) {
  3. int res = token.compareTo(that.token);
  4. if (res != 0) {
  5. return res;
  6. }
  7. res = Util.cmpObjval(this.getResource(), that.getResource());
  8. if (res != 0) {
  9. return res;
  10. }
  11. res = Util.cmpObjval(this.getEvent(), that.getEvent());
  12. if (res != 0) {
  13. return res;
  14. }
  15. return Util.cmpObjval(this.getCol(), that.getCol());
  16. }

代码示例来源:origin: org.bedework/bw-util-servlet

  1. /** Get a multi-valued request parameter stripped of white space.
  2. * Return null for zero length.
  3. *
  4. * @param name name of parameter
  5. * @return List<String> or null
  6. * @throws Throwable
  7. */
  8. public List<String> getReqPars(final String name) throws Throwable {
  9. String[] s = request.getParameterValues(name);
  10. ArrayList<String> res = null;
  11. if ((s == null) || (s.length == 0)) {
  12. return null;
  13. }
  14. for (String par: s) {
  15. par = Util.checkNull(par);
  16. if (par != null) {
  17. if (res == null) {
  18. res = new ArrayList<>();
  19. }
  20. res.add(par);
  21. }
  22. }
  23. return res;
  24. }

相关文章