gpt4 book ai didi

net.fortuna.ical4j.model.component.XComponent类的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 18:05:40 25 4
gpt4 key购买 nike

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

XComponent介绍

[英]$Id$ Created on 3/11/2005 Implementation of an experimental component as defined in RFC2445.
[中]$Id$于2005年11月3日创建,用于实现RFC2445中定义的实验组件。

代码示例

代码示例来源:origin: org.bedework.ical4j/ical4j

/**
 * {@inheritDoc}
 */
public final void validate(final boolean recurse)
    throws ValidationException {
  
  if (!CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_RELAXED_VALIDATION)
      && !getName().startsWith(EXPERIMENTAL_PREFIX)) {
    
    throw new ValidationException(
        "Experimental components must have the following prefix: "
            + EXPERIMENTAL_PREFIX);
  }
  
  if (recurse) {
    validateProperties();
  }
}

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

/**
 * @param name a component name
 * @return a new component instance of the specified type
 */
public <T extends Component> T createComponent(final String name) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent();
  } else if (isExperimentalName(name)) {
    component = new XComponent(name);
  } else if (allowIllegalNames()) {
    component = new XComponent(name);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

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

/**
 * Creates a component.
 *
 * @param name       name of the component
 * @param properties a list of component properties
 * @return a component
 */
@SuppressWarnings("unchecked")
public <T extends Component> T createComponent(final String name, final PropertyList properties) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent(properties);
  } else if (isExperimentalName(name)) {
    component = new XComponent(name, properties);
  } else if (allowIllegalNames()) {
    component = new XComponent(name, properties);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

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

/**
 * {@inheritDoc}
 */
public final void validate(final boolean recurse)
    throws ValidationException {
  
  if (!CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_RELAXED_VALIDATION)
      && !getName().startsWith(EXPERIMENTAL_PREFIX)) {
    
    throw new ValidationException(
        "Experimental components must have the following prefix: "
            + EXPERIMENTAL_PREFIX);
  }
  
  if (recurse) {
    validateProperties();
  }
}

代码示例来源:origin: org.mnode.ical4j/ical4j

/**
 * @param name a component name
 * @return a new component instance of the specified type
 */
public <T extends Component> T createComponent(final String name) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent();
  } else if (isExperimentalName(name)) {
    component = new XComponent(name);
  } else if (allowIllegalNames()) {
    component = new XComponent(name);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

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

/**
 * {@inheritDoc}
 */
public final void validate(final boolean recurse)
    throws ValidationException {
  
  if (!CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_RELAXED_VALIDATION)
      && !getName().startsWith(EXPERIMENTAL_PREFIX)) {
    
    throw new ValidationException(
        "Experimental components must have the following prefix: "
            + EXPERIMENTAL_PREFIX);
  }
  
  if (recurse) {
    validateProperties();
  }
}

代码示例来源:origin: org.bedework.ical4j/ical4j

/**
 * @param name a component name
 * @return a new component instance of the specified type
 */
public <T extends Component> T createComponent(final String name) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent();
  } else if (isExperimentalName(name)) {
    component = new XComponent(name);
  } else if (allowIllegalNames()) {
    component = new XComponent(name);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

代码示例来源:origin: org.mnode.ical4j/ical4j

/**
 * {@inheritDoc}
 */
public final void validate(final boolean recurse)
    throws ValidationException {
  
  if (!CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_RELAXED_VALIDATION)
      && !getName().startsWith(EXPERIMENTAL_PREFIX)) {
    
    throw new ValidationException(
        "Experimental components must have the following prefix: "
            + EXPERIMENTAL_PREFIX);
  }
  
  if (recurse) {
    validateProperties();
  }
}

代码示例来源:origin: net.oneandone.ical4j/ical4j

/**
 * @param name a component name
 * @return a new component instance of the specified type
 */
public <T extends Component> T createComponent(final String name) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent();
  } else if (isExperimentalName(name)) {
    component = new XComponent(name);
  } else if (allowIllegalNames()) {
    component = new XComponent(name);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

代码示例来源:origin: net.oneandone.ical4j/ical4j

/**
 * {@inheritDoc}
 */
public final void validate(final boolean recurse)
    throws ValidationException {
  
  if (!CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_RELAXED_VALIDATION)
      && !getName().startsWith(EXPERIMENTAL_PREFIX)) {
    
    throw new ValidationException(
        "Experimental components must have the following prefix: "
            + EXPERIMENTAL_PREFIX);
  }
  
  if (recurse) {
    validateProperties();
  }
}

代码示例来源:origin: net.oneandone.ical4j/ical4j

/**
 * Creates a component.
 *
 * @param name       name of the component
 * @param properties a list of component properties
 * @return a component
 */
@SuppressWarnings("unchecked")
public <T extends Component> T createComponent(final String name, final PropertyList properties) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent(properties);
  } else if (isExperimentalName(name)) {
    component = new XComponent(name, properties);
  } else if (allowIllegalNames()) {
    component = new XComponent(name, properties);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

代码示例来源:origin: org.mnode.ical4j/ical4j

/**
 * Creates a component.
 *
 * @param name       name of the component
 * @param properties a list of component properties
 * @return a component
 */
@SuppressWarnings("unchecked")
public <T extends Component> T createComponent(final String name, final PropertyList properties) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent(properties);
  } else if (isExperimentalName(name)) {
    component = new XComponent(name, properties);
  } else if (allowIllegalNames()) {
    component = new XComponent(name, properties);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

代码示例来源:origin: org.bedework.ical4j/ical4j

/**
 * Creates a component.
 *
 * @param name       name of the component
 * @param properties a list of component properties
 * @return a component
 */
@SuppressWarnings("unchecked")
public <T extends Component> T createComponent(final String name, final PropertyList properties) {
  Component component;
  ComponentFactory factory = getFactory(name);
  if (factory != null) {
    component = factory.createComponent(properties);
  } else if (isExperimentalName(name)) {
    component = new XComponent(name, properties);
  } else if (allowIllegalNames()) {
    component = new XComponent(name, properties);
  } else {
    throw new IllegalArgumentException("Unsupported component [" + name + "]");
  }
  return (T) component;
}

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

/**
   * @return
   */
  public static TestSuite suite() {
    TestSuite suite = new TestSuite();
    
    suite.addTest(new XComponentTest("testIsCalendarComponent", new XComponent("X-TEST")));
    suite.addTest(new XComponentTest("testValidation", new XComponent("X-TEST")));
    suite.addTest(new XComponentTest("testValidationException", new XComponent("TEST")));
    suite.addTest(new XComponentTest("testRelaxedValidation", new XComponent("TEST")));
    
    return suite;
  }
}

代码示例来源:origin: org.mnode.ical4j/ical4j

@SuppressWarnings("unchecked")
  public T build() {
    Component component = null;
    for (ComponentFactory factory : factories) {
      if (factory.supports(name)) {
        if (!subComponents.isEmpty()) {
          component = factory.createComponent(properties, subComponents);
        } else {
          component = factory.createComponent(properties);
        }
      }
    }

    if (component == null) {
      if (isExperimentalName(name)) {
        component = new XComponent(name, properties);
      } else if (allowIllegalNames()) {
        component = new XComponent(name, properties);
      } else {
        throw new IllegalArgumentException("Unsupported component [" + name + "]");
      }
    }
    return (T) component;
  }
}

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

@SuppressWarnings("unchecked")
  public T build() {
    Component component = null;
    for (ComponentFactory factory : factories) {
      if (factory.supports(name)) {
        if (!subComponents.isEmpty()) {
          component = factory.createComponent(properties, subComponents);
        } else {
          component = factory.createComponent(properties);
        }
      }
    }

    if (component == null) {
      if (isExperimentalName(name)) {
        component = new XComponent(name, properties);
      } else if (allowIllegalNames()) {
        component = new XComponent(name, properties);
      } else {
        throw new IllegalArgumentException("Unsupported component [" + name + "]");
      }
    }
    return (T) component;
  }
}

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

component = new XComponent(name, properties);
component = new XComponent(name, properties);

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com