gpt4 book ai didi

net.fortuna.ical4j.model.component.XComponent.()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 17:27:40 26 4
gpt4 key购买 nike

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

XComponent.<init>介绍

[英]Creates a new experimental component with the specified name.
[中]使用指定的名称创建新的实验组件。

代码示例

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

/**
 * 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

/**
 * 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: 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.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: org.bedework/bw-ical4j-cl

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

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