public enum Distribution extends Enum<Distribution>
Modifier and Type | Class and Description |
---|---|
static class |
Distribution.DistributionParam |
Enum Constant and Description |
---|
DBINOM |
DCAUCHY |
DCHISQ |
DEXP |
DF |
DGAMMA |
DGEOM |
DHYPER |
DLNORM |
QUNIFMM |
QUNIFPC |
Modifier and Type | Field and Description |
---|---|
protected String |
description |
protected Class |
distClass |
protected String |
instruction |
protected Distribution.DistributionParam[] |
params |
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
Class |
getDistClass() |
Distribution.DistributionParam[] |
getDistibutionParams() |
String |
getInstruction() |
static Distribution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Distribution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Distribution QUNIFPC
public static final Distribution QUNIFMM
public static final Distribution DBINOM
public static final Distribution DCAUCHY
public static final Distribution DCHISQ
public static final Distribution DEXP
public static final Distribution DF
public static final Distribution DGAMMA
public static final Distribution DGEOM
public static final Distribution DHYPER
public static final Distribution DLNORM
protected String description
protected String instruction
protected Class distClass
protected Distribution.DistributionParam[] params
public static Distribution[] values()
for (Distribution c : Distribution.values()) System.out.println(c);
public static Distribution valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getDescription()
public String getInstruction()
public Class getDistClass()
public Distribution.DistributionParam[] getDistibutionParams()
Copyright © 1999–2020 CodeLutin. All rights reserved.