blob: 23818c37f580170f7984591c0d476408d8b5cc3c [file] [log] [blame]
package com.intellij.codeInsight.completion;
/**
* @author peter
*/
public enum CompletionType {
BASIC,
SMART,
/**
* Only to be passed to {@link CompletionService#getVariantsFromContributors(CompletionParameters, CompletionContributor, com.intellij.util.Consumer)}
* to invoke special class-name providers for various file types where those class names are applicable (e.g. xml, txt, properties, custom)
*/
CLASS_NAME
}