Codota Logo
PropertyDefinitionEnumeration.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.rhq.core.domain.configuration.definition.PropertyDefinitionEnumeration
constructor

Best Java code snippets using org.rhq.core.domain.configuration.definition.PropertyDefinitionEnumeration.<init> (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: org.rhq/rhq-enterprise-server

private void processPropertyOptionsSource(Resource resource, Resource baseResource, PropertyDefinitionSimple pds,
  PropertyOptionsSource.TargetType tt, String expression, Pattern filterPattern, Resource foundResource) {
  if (tt == PropertyOptionsSource.TargetType.RESOURCE) {
    String name = foundResource.getName();
    // filter if the user provided a filter
    if (filterPattern != null) {
      Matcher m = filterPattern.matcher(name);
      if (m.matches()) {
        PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, "" + name);
        pds.getEnumeratedValues().add(pde);
      }
    } else { // Filter is null -> none provided -> do not filter
      PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, "" + name);
      pds.getEnumeratedValues().add(pde);
    }
  } else if (tt == PropertyOptionsSource.TargetType.CONFIGURATION) {
    //  for configuration we need to drill down into the resource configuration
    if (!handleConfigurationTarget(resource, baseResource, pds, expression, foundResource))
      return;
  }
}
origin: org.rhq/rhq-enterprise-server

String name = ps.getStringValue();
if (name != null) {
  PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, name);
  pds.getEnumeratedValues().add(pde);
String name = propertySimple.getStringValue();
if (name != null) {
  PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, name);
  pds.getEnumeratedValues().add(pde);
origin: org.rhq/rhq-core-domain

private static PropertyDefinitionSimple createBasedirValueContext(boolean readOnly) {
  String name = PROP_BASEDIR_VALUECONTEXT;
  String description = "Identifies where the named value can be found.";
  boolean required = true;
  PropertySimpleType type = PropertySimpleType.STRING;
  PropertyDefinitionSimple pd = new PropertyDefinitionSimple(name, description, required, type);
  pd.setDisplayName("Value Context");
  pd.setReadOnly(readOnly);
  pd.setSummary(true);
  pd.setOrder(0);
  PropertyDefinitionEnumeration pcEnum = new PropertyDefinitionEnumeration(
    BaseDirValueContext.pluginConfiguration.name(), BaseDirValueContext.pluginConfiguration.name());
  pcEnum.setOrderIndex(0);
  PropertyDefinitionEnumeration rcEnum = new PropertyDefinitionEnumeration(
    BaseDirValueContext.resourceConfiguration.name(), BaseDirValueContext.resourceConfiguration.name());
  rcEnum.setOrderIndex(1);
  PropertyDefinitionEnumeration mtEnum = new PropertyDefinitionEnumeration(BaseDirValueContext.measurementTrait
    .name(), BaseDirValueContext.measurementTrait.name());
  mtEnum.setOrderIndex(2);
  PropertyDefinitionEnumeration fsEnum = new PropertyDefinitionEnumeration(BaseDirValueContext.fileSystem.name(),
    BaseDirValueContext.fileSystem.name());
  fsEnum.setOrderIndex(3);
  ArrayList<PropertyDefinitionEnumeration> pdEnums = new ArrayList<PropertyDefinitionEnumeration>(4);
  pdEnums.add(pcEnum);
  pdEnums.add(rcEnum);
  pdEnums.add(mtEnum);
  pdEnums.add(fsEnum);
  pd.setEnumeratedValues(pdEnums, false);
  return pd;
}
origin: org.rhq/rhq-core-client-api

private static List<PropertyDefinitionEnumeration> parsePropertyOptions(PropertyDefinitionSimple parentProperty,
  PropertyOptions options) {
  List<PropertyDefinitionEnumeration> results = new ArrayList<PropertyDefinitionEnumeration>();
  for (Option option : options.getOption()) {
    String name = option.getName();
    if (name == null) {
      name = option.getValue();
    }
    PropertyDefinitionEnumeration enumeration = new PropertyDefinitionEnumeration(name, option.getValue());
    parentProperty.addEnumeratedValues(enumeration);
  }
  parentProperty.setAllowCustomEnumeratedValue(options.isAllowCustomValue());
  return results;
}
origin: org.rhq/rhq-core-domain

pd.setConfigurationDefinition(configDef);
PropertyDefinitionEnumeration normalEnum = new PropertyDefinitionEnumeration(DriftHandlingMode.normal.name(),
  DriftHandlingMode.normal.name());
normalEnum.setOrderIndex(0);
PropertyDefinitionEnumeration plannedEnum = new PropertyDefinitionEnumeration(DriftHandlingMode.plannedChanges
  .name(), DriftHandlingMode.plannedChanges.name());
plannedEnum.setOrderIndex(1);
org.rhq.core.domain.configuration.definitionPropertyDefinitionEnumeration<init>

Popular methods of PropertyDefinitionEnumeration

  • getName
  • getValue
  • equals
  • setName
  • setOrderIndex
  • setPropertyDefinitionSimple
  • setValue

Popular in Java

  • Creating JSON documents from java classes using gson
  • getContentResolver (Context)
  • getApplicationContext (Context)
  • onRequestPermissionsResult (Fragment)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • JTable (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now