public class Profiles
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
Dev
Configuration for the development environment.
|
static java.lang.String |
Prod
Configuration for the production environment.
|
static java.lang.String |
QA
Configuration for the QA environment.
|
Constructor and Description |
---|
Profiles() |
Modifier and Type | Method and Description |
---|---|
static java.util.stream.Stream<java.lang.String> |
findUnknownProfiles(java.util.stream.Stream<java.lang.String> xs)
Finds the strings in the given list that don't match the name of any of
our profiles.
|
public static final java.lang.String Dev
public static final java.lang.String QA
public static final java.lang.String Prod
public static java.util.stream.Stream<java.lang.String> findUnknownProfiles(java.util.stream.Stream<java.lang.String> xs)
xs
- a list of candidate profile names.