Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 

A

add(double[], double[]) - Static method in class edu.ie3.util.ArrayHelper
Element wise addition of two double arrays
add(Complex[], Complex[]) - Static method in class edu.ie3.util.ArrayHelper
Element wise addition of two double arrays
add(Quantity<Q>) - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
areAllCollinear(List<Point>) - Static method in class edu.ie3.util.geo.GrahamScan
Returns true iff all points in points are collinear.
arrayContainsValue(Object[], Object) - Static method in class edu.ie3.util.ArrayHelper
Return true, if the given object is contained in the given array
arrayContainsValue(int[], int) - Static method in class edu.ie3.util.ArrayHelper
Return true, if the given int is contained in the given array
ArrayHelper - Class in edu.ie3.util
Contains convenience methods for arrays
as(NamingConvention) - Method in class edu.ie3.util.naming.Naming
Get the naming as the given convention.
asComparable(Quantity<Q>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Converts a given quantity to a comparable quantity
available() - Method in class edu.ie3.util.copy.FastByteArrayInputStream
 

B

buf - Variable in class edu.ie3.util.copy.FastByteArrayInputStream
Our byte buffer
buf - Variable in class edu.ie3.util.copy.FastByteArrayOutputStream
Buffer and size
buildClosedWays(Relation) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
This method is currently not under test and has to be revised thoroughly
buildConvexHull(Set<Point>, int, GeoUtils.ConvexHullAlgorithm) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
buildSafeLineString(LineString) - Static method in class edu.ie3.util.geo.GeoUtils
Convert a given LineString with at least two points into a 'safe to be compared' LineString This is done by removing duplicates in the points in the provided linestring as well as a small change of the start coordinate if the linestring only consists of two coordinates.
buildSafeLineStringBetweenCoords(Coordinate, Coordinate) - Static method in class edu.ie3.util.geo.GeoUtils
Build an instance of LineString between two coordinates that is safe to be compared even if the provided two coordinates are exactly the same coordinates.
buildSafeLineStringBetweenPoints(Point, Point) - Static method in class edu.ie3.util.geo.GeoUtils
Build an instance of LineString between two points that is safe to be compared even if the provided two points consist of exactly the same coordinates.

C

calcArea(Way) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
calcArea(Polygon) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
calcGeo2qmNew(double, Quantity<Area>) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
calcHaversine(double, double, double, double) - Static method in class edu.ie3.util.geo.GeoUtils
Calculates the distance in km between two lat/long points using the haversine formula
calculateBuildingArea(Way) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
camelCase() - Method in class edu.ie3.util.naming.Naming
 
camelCaseToSnakeCase(String) - Static method in class edu.ie3.util.StringUtils
Converts a given camel case string to its snake case representation
camelCaseToSnakeCase(String[]) - Static method in class edu.ie3.util.StringUtils
Converts an Array of camel case strings to its snake case representations
camelSnakeCase() - Method in class edu.ie3.util.naming.Naming
 
capitalize(String) - Static method in class edu.ie3.util.StringUtils
Capitalizes a given String.
CHARSET_UTF8 - Static variable in class edu.ie3.util.io.FileIOUtils
 
CHARSET_WINDOWS_ISO88591 - Static variable in class edu.ie3.util.io.FileIOUtils
 
cleanString(String) - Static method in class edu.ie3.util.StringUtils
Replaces all non word-characters with an underscore
ClosedInterval<T extends java.lang.Comparable<? super T> & java.io.Serializable> - Class in edu.ie3.util.interval
Closed interval.
ClosedInterval(T, T) - Constructor for class edu.ie3.util.interval.ClosedInterval
 
compareTo(CoordinateDistance) - Method in class edu.ie3.util.geo.CoordinateDistance
Compares two coordinate distances on the length of the distance alone, thus having a natural ordering that is inconsistent with equals
compressDir(Path, Path) - Static method in class edu.ie3.util.io.FileIOUtils
Compress all the files present in the provided directory and returns a Future with the result.
compressFile(Path, Path) - Static method in class edu.ie3.util.io.FileIOUtils
Compresses a single file and returns a Future with the result.
considerablyAbsEqual(Quantity<Q>, Quantity<Q>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Deprecated.
renamed to isEquivalentAbs(Quantity, Quantity, double) for clarity und uniformity
considerablyEqualAngle(Quantity<Angle>, Quantity<Angle>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
considerablyRelEqual(Quantity<Q>, Quantity<Q>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Deprecated.
Renamed to isEquivalentRel(Quantity, Quantity, double) for clarity und uniformity
CoordinateDistance - Class in edu.ie3.util.geo
Wraps two coordinates with the distance between the first one and the second one, can be compared by distance to another CoordinateDistance
CoordinateDistance(Point, Point) - Constructor for class edu.ie3.util.geo.CoordinateDistance
Calculates the distance from the first to the second coordinate using GeoUtils.calcHaversine(double, double, double, double)
copy(C) - Static method in class edu.ie3.util.copy.DeepCopy
Returns a copy of the object, or null if the object cannot be serialized.
count - Variable in class edu.ie3.util.copy.FastByteArrayInputStream
Number of bytes that we can read from the buffer
csvString(String, String) - Static method in class edu.ie3.util.StringUtils
Quotes a given string that contains special characters to comply with the csv specification RFC 4180 (https://tools.ietf.org/html/rfc4180).
Currency - Interface in edu.ie3.util.quantities.interfaces
 

D

DeepCopy - Class in edu.ie3.util.copy
Utility for making deep copies (vs.
DEFAULT_GEOMETRY_FACTORY - Static variable in class edu.ie3.util.geo.GeoUtils
Offer a default geometry factory for the WGS84 coordinate system
DEGREE_GEOM - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Degree
deleteFileIfExists(String) - Static method in class edu.ie3.util.io.FileIOUtils
Checks if a file exists and if yes, the file will be deleted and the Future will return true, otherwise it will return false
deleteRecursively(String) - Static method in class edu.ie3.util.io.FileIOUtils
Deletes the given path described by the path-string recursively, including the path itself as well
deleteRecursively(Path) - Static method in class edu.ie3.util.io.FileIOUtils
Deletes the given path recursively, including the path itself as well
Density - Interface in edu.ie3.util.quantities.interfaces
 
deserializeToObject(String, Class<T>) - Static method in class edu.ie3.util.json.JsonUtil
 
deserializeToObjectList(String, Type) - Static method in class edu.ie3.util.json.JsonUtil
 
DimensionlessRate - Interface in edu.ie3.util.quantities.interfaces
 
distinctByKey(Function<? super T, ?>) - Static method in class edu.ie3.util.StreamUtils
Usage: Stream.filter(StreamUtils.distinctByKey(node to node.getSubnet[0]))
divide(Quantity<?>) - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
divide(Number) - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
donerCase() - Method in class edu.ie3.util.naming.Naming
 

E

EARTH_RADIUS - Static variable in class edu.ie3.util.geo.GeoUtils
 
edu.ie3.util - package edu.ie3.util
 
edu.ie3.util.copy - package edu.ie3.util.copy
 
edu.ie3.util.exceptions - package edu.ie3.util.exceptions
 
edu.ie3.util.geo - package edu.ie3.util.geo
 
edu.ie3.util.interval - package edu.ie3.util.interval
 
edu.ie3.util.io - package edu.ie3.util.io
 
edu.ie3.util.io.xmladapter - package edu.ie3.util.io.xmladapter
 
edu.ie3.util.json - package edu.ie3.util.json
 
edu.ie3.util.naming - package edu.ie3.util.naming
 
edu.ie3.util.quantities - package edu.ie3.util.quantities
 
edu.ie3.util.quantities.interfaces - package edu.ie3.util.quantities.interfaces
 
EmpiricalRandom<C> - Class in edu.ie3.util
Returns random objects based on their empirical occurrence.
EmpiricalRandom(Map<C, Double>, long) - Constructor for class edu.ie3.util.EmpiricalRandom
Constructor for the empirical occurrence based random generator
EmpiricalRandom(Map<C, Double>) - Constructor for class edu.ie3.util.EmpiricalRandom
Constructor for the empirical occurrence based random generator
EmptyQuantity<Q extends javax.measure.Quantity<Q>> - Class in edu.ie3.util.quantities
This class represents a Quantity with the value null.
EmptyQuantityException - Exception in edu.ie3.util.exceptions
Thrown when an operation should be performed on an EmptyQuantity which is not allowed.
EmptyQuantityException() - Constructor for exception edu.ie3.util.exceptions.EmptyQuantityException
Constructs a EmptyQuantityException with no detail message.
EmptyQuantityException(String) - Constructor for exception edu.ie3.util.exceptions.EmptyQuantityException
Constructs a EmptyQuantityException with the specified detail message.
EnergyDensity - Interface in edu.ie3.util.quantities.interfaces
Deprecated.
replaced by Irradiation
EnergyPrice - Interface in edu.ie3.util.quantities.interfaces
 
equals(Object) - Method in class edu.ie3.util.geo.CoordinateDistance
 
equals(Object) - Method in class edu.ie3.util.naming.Naming
 
equals(Object) - Method in class edu.ie3.util.OneToOneMap
 
equals(Object) - Method in class edu.ie3.util.quantities.EmptyQuantity
Decides equality based only on the type of the object: If it is an EmptyQuantity, it is equal.
equals(Quantity<Q>, Quantity<Q>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equal.
equals(Quantity<Q>, Quantity<Q>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equal.
EURO - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Euro
EURO_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Euro / km
EURO_PER_KILOWATTHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Euro / kWh
EURO_PER_MEGAWATTHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Euro / MWh
EURO_PER_WATTHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Euro / Wh
extractDir(Path, Path) - Static method in class edu.ie3.util.io.FileIOUtils
Extracts the given archive to a sub-directory with the same name that the archive has beneath the target directory.
extractDir(Path, File) - Static method in class edu.ie3.util.io.FileIOUtils
Extracts the given archive to a sub-directory with the same name that the archive has beneath the target directory.
extractFile(Path, Path) - Static method in class edu.ie3.util.io.FileIOUtils
Extracts the given zipped file to a file with the same name that the zipped file has beneath the target directory.

F

FARAD_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
F / km
FARAD_PER_METRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Farad per metre
FastByteArrayInputStream - Class in edu.ie3.util.copy
ByteArrayInputStream implementation that does not synchronize methods.
FastByteArrayInputStream(byte[], int) - Constructor for class edu.ie3.util.copy.FastByteArrayInputStream
 
FastByteArrayOutputStream - Class in edu.ie3.util.copy
ByteArrayOutputStream implementation that doesn't synchronize methods and doesn't copy the data on toByteArray().
FastByteArrayOutputStream() - Constructor for class edu.ie3.util.copy.FastByteArrayOutputStream
Constructs a stream with buffer capacity size 5K
FastByteArrayOutputStream(int) - Constructor for class edu.ie3.util.copy.FastByteArrayOutputStream
Constructs a stream with the given initial size
FileException - Exception in edu.ie3.util.exceptions
 
FileException(String) - Constructor for exception edu.ie3.util.exceptions.FileException
 
FileException(String, Throwable) - Constructor for exception edu.ie3.util.exceptions.FileException
 
FileIOUtils - Class in edu.ie3.util.io
Offers some useful features to simplify file handling.
flatCase() - Method in class edu.ie3.util.naming.Naming
 
from(String...) - Static method in class edu.ie3.util.naming.Naming
Builds a naming from a collection of single words.

G

GeoPreparationException - Exception in edu.ie3.util.exceptions
Exception that is thrown when something went's wrong during geo handling
GeoPreparationException() - Constructor for exception edu.ie3.util.exceptions.GeoPreparationException
 
GeoPreparationException(String) - Constructor for exception edu.ie3.util.exceptions.GeoPreparationException
 
GeoPreparationException(String, Throwable) - Constructor for exception edu.ie3.util.exceptions.GeoPreparationException
 
GeoPreparationException(Throwable) - Constructor for exception edu.ie3.util.exceptions.GeoPreparationException
 
GeoPreparationException(String, Throwable, boolean, boolean) - Constructor for exception edu.ie3.util.exceptions.GeoPreparationException
 
GeoUtils - Class in edu.ie3.util.geo
Functionality to deal with geographical and geometric information
GeoUtils() - Constructor for class edu.ie3.util.geo.GeoUtils
 
GeoUtils.ConvexHullAlgorithm - Enum in edu.ie3.util.geo
 
getBufferedWriter(String, Charset) - Static method in class edu.ie3.util.io.FileIOUtils
Tries to open the specified file for writing and returns a BufferedWriter for it.
getBufferedWriter(String, Charset, boolean) - Static method in class edu.ie3.util.io.FileIOUtils
Tries to open the specified file for writing and returns a BufferedWriter for it.
getBufferedWriterUTF8(String) - Static method in class edu.ie3.util.io.FileIOUtils
Tries to open the specified file for writing and returns a UTF-8 charset encoded BufferedWriter for it.
getByteArray() - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
Returns the byte array containing the written data.
getConvexHull(int[], int[]) - Static method in class edu.ie3.util.geo.GrahamScan
Returns the convex hull of the points created from xs and ys.
getConvexHull(List<Point>) - Static method in class edu.ie3.util.geo.GrahamScan
Returns the convex hull of the points created from the list points.
getCoordinateA() - Method in class edu.ie3.util.geo.CoordinateDistance
 
getCoordinateB() - Method in class edu.ie3.util.geo.CoordinateDistance
 
getCoordinateDistances(Point, Collection<Point>) - Static method in class edu.ie3.util.geo.GeoUtils
Calculates and sorts the distances between a base coordinate and other given coordinates using GeoUtils.calcHaversine(double, double, double, double)
getDateTimeFormatter() - Method in class edu.ie3.util.TimeUtil
 
getDistance() - Method in class edu.ie3.util.geo.CoordinateDistance
 
getDtfPattern() - Method in class edu.ie3.util.TimeUtil
 
getEmpiricalCdf() - Method in class edu.ie3.util.EmpiricalRandom
 
getInputStream() - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
Returns a ByteArrayInputStream for reading back the written data
getIntersection(Polygon, Polygon) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
getKey(Y) - Method in class edu.ie3.util.OneToOneMap
 
getLocale() - Method in class edu.ie3.util.TimeUtil
 
getLowestPoint(List<Point>) - Static method in class edu.ie3.util.geo.GrahamScan
Returns the points with the lowest y coordinate.
getQuarterHourOfDay(ZonedDateTime) - Method in class edu.ie3.util.TimeUtil
Determines the number of quarter hour of the day (starting with 0).
getSize() - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
 
getSortedPointSet(List<Point>) - Static method in class edu.ie3.util.geo.GrahamScan
Returns a sorted set of points from the list points.
getTimeZone() - Method in class edu.ie3.util.TimeUtil
 
getTurn(Point, Point, Point) - Static method in class edu.ie3.util.geo.GrahamScan
Returns the GrahamScan#Turn formed by traversing through the ordered points a, b and c.
getValue() - Method in class edu.ie3.util.quantities.EmptyQuantity
Returns always null, as that is the only value an EmptyQuantity can and should have
getZoneId() - Method in class edu.ie3.util.TimeUtil
 
GrahamScan - Class in edu.ie3.util.geo
 
GrahamScan() - Constructor for class edu.ie3.util.geo.GrahamScan
 
GrahamScan.Turn - Enum in edu.ie3.util.geo
An enum denoting a directional-turn between 3 points (vectors).
gzip(String) - Static method in class edu.ie3.util.io.FileIOUtils
Deprecated.
replaced by #compressFile(Path, Path). Add ".gz" to the input path and pass it as output filepath in compressFile() for a similar functionality.
gzip(String, String) - Static method in class edu.ie3.util.io.FileIOUtils
Deprecated.
replaced by #compressFile(Path, Path)

H

hashCode() - Method in class edu.ie3.util.geo.CoordinateDistance
 
hashCode() - Method in class edu.ie3.util.naming.Naming
 
hashCode() - Method in class edu.ie3.util.OneToOneMap
 
hashCode() - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
HeatCapacity - Interface in edu.ie3.util.quantities.interfaces
Denoting all physical quantities describing a heat capacity

I

includes(T) - Method in class edu.ie3.util.interval.ClosedInterval
Checks if value is included in the interval, treating it as an closed interval
includes(T) - Method in class edu.ie3.util.interval.LeftOpenInterval
Checks if value is included in the interval, treating it as an left open interval
includes(T) - Method in class edu.ie3.util.interval.OpenInterval
Checks if value is included in the interval, treating it as an open interval
includes(T) - Method in class edu.ie3.util.interval.RightOpenInterval
Checks if value is included in the interval, treating it as an right open interval
inverse() - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
Irradiance - Interface in edu.ie3.util.quantities.interfaces
Irradiance is the radiant exitance emitted or received by a surface per unit area.
Irradiation - Interface in edu.ie3.util.quantities.interfaces
Interface to describe the radiant exposure quantity.
isBetween(Node, Node, Node) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
isEmpty(Quantity<?>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Checks if the given quantity is empty by returning positive if it is an EmptyQuantity.
isEquivalentAbs(Quantity<Q>, Quantity<Q>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equivalent considering both quantities magnitude.
isEquivalentAbs(Quantity<Q>, Quantity<Q>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equivalent considering both quantities magnitude.
isEquivalentAngle(Quantity<Angle>, Quantity<Angle>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Angle Quantitys, if they are equivalent, especially considering semantic equality for angles.
isEquivalentAngle(Quantity<Angle>, Quantity<Angle>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Angle Quantitys, if they are equivalent, especially considering semantic equality for angles.
isEquivalentConsideringEmpty(ComparableQuantity<Q>, ComparableQuantity<Q>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equivalent.
isEquivalentConsideringEmpty(ComparableQuantity<Q>, ComparableQuantity<Q>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equivalent.
isEquivalentRel(Quantity<Q>, Quantity<Q>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equivalent considering both quantities magnitude.
isEquivalentRel(Quantity<Q>, Quantity<Q>, double) - Static method in class edu.ie3.util.quantities.QuantityUtil
Compares two Quantitys, if they are equivalent considering both quantities magnitude.
isEquivalentTo(Quantity) - Method in class edu.ie3.util.quantities.EmptyQuantity
Decides equality based only on the type of the quantity: If it is an EmptyQuantity, it is equal.
isInsideLanduse(LatLon, List<Way>) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
isTheSameConsideringEmpty(Quantity<Q>, Quantity<Q>) - Static method in class edu.ie3.util.quantities.QuantityUtil
Deprecated.
Renamed to equals(Quantity, Quantity) for clarity and uniformity

J

JsonUtil - Class in edu.ie3.util.json
Static wrapper class to perform JSON operations with Gson

K

kebabCase() - Method in class edu.ie3.util.naming.Naming
 
KILOGRAM_PER_CUBIC_METRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Density
KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilometre
KILOVAR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilovar
KILOVARHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
 
KILOVOLT - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilovolt
KILOVOLTAMPERE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilovoltampere
KILOWATT - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilowatt
KILOWATT_PER_KELVIN - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
kW/K
KILOWATT_PER_SQUAREMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilowatt per square metre
KILOWATTHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilowatthour
KILOWATTHOUR_PER_KELVIN - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
kWh/K
KILOWATTHOUR_PER_KELVIN_TIMES_CUBICMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
kWh/K*m³
KILOWATTHOUR_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilowatthour per Kilometre
KILOWATTHOUR_PER_SQUAREMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Kilowatthour per squaremetre

L

latlonToPoint(LatLon) - Static method in class edu.ie3.util.geo.GeoUtils
Calculates the geo position as a Point from a given Latlon (net.morbz.osmonaut.osm).
LeftOpenInterval<T extends java.lang.Comparable<? super T> & java.io.Serializable> - Class in edu.ie3.util.interval
Left open interval.
LeftOpenInterval(T, T) - Constructor for class edu.ie3.util.interval.LeftOpenInterval
 

M

marshal(List<Integer>) - Method in class edu.ie3.util.io.xmladapter.StringToIntegerListAdapter
Deprecated.
 
marshal(List<String>) - Method in class edu.ie3.util.io.xmladapter.StringToStringListAdapter
Deprecated.
 
marshal(Year) - Method in class edu.ie3.util.io.xmladapter.YearAdapter
Deprecated.
 
MEGAVAR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Megavar
MEGAVOLT - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Megavolt
MEGAVOLTAMPERE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Megavoltampere
MEGAWATT - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Megawatt
MICRO_SIEMENS_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Micro Siemens per kilometre
MICROFARAD_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
µF / km
MILLISECOND - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Millisecond
multiply(Quantity<?>) - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
multiply(Number) - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity

N

Naming - Class in edu.ie3.util.naming
 
NamingConvention - Enum in edu.ie3.util.naming
An enumeration of commonly known and used naming conventions according to Wikipedia.
NATIVE_NEWLINE - Static variable in class edu.ie3.util.io.FileIOUtils
 
negate() - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity
nextEmpirical() - Method in class edu.ie3.util.EmpiricalRandom
Get the next object

O

of(Unit<U>) - Static method in class edu.ie3.util.quantities.EmptyQuantity
Initializes an EmptyQuantity with the specified Unit
OHM_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Ohm per kilometre
OneToOneMap<X,Y> - Class in edu.ie3.util
A map that also contains an inverse map (e.g.
OneToOneMap() - Constructor for class edu.ie3.util.OneToOneMap
 
OneToOneMap(int) - Constructor for class edu.ie3.util.OneToOneMap
 
OneToOneMap(Map<X, Y>) - Constructor for class edu.ie3.util.OneToOneMap
 
OpenInterval<T extends java.lang.Comparable<? super T> & java.io.Serializable> - Class in edu.ie3.util.interval
Open interval.
OpenInterval(T, T) - Constructor for class edu.ie3.util.interval.OpenInterval
 

P

pascalCase() - Method in class edu.ie3.util.naming.Naming
 
pascalSnakeCase() - Method in class edu.ie3.util.naming.Naming
 
PERCENT_PER_HOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
 
pos - Variable in class edu.ie3.util.copy.FastByteArrayInputStream
Number of bytes that have been read from the buffer
pow(Double[], double) - Static method in class edu.ie3.util.ArrayHelper
Builds the exponential value of each of the Array elements
PowerDensity - Interface in edu.ie3.util.quantities.interfaces
Deprecated.
replaced by Irradiance
PowerSystemUnits - Class in edu.ie3.util.quantities
Defines the physical units used in the simulation.
PowerSystemUnits() - Constructor for class edu.ie3.util.quantities.PowerSystemUnits
 
PricePerLength - Interface in edu.ie3.util.quantities.interfaces
Interface to describe a price per distance
PU - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Per Unit
PU_PER_HOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
 
put(X, Y) - Method in class edu.ie3.util.OneToOneMap
 

Q

QuantityUtil - Class in edu.ie3.util.quantities
Offers useful methods to handle Quantitys

For the purpose of this class and the use within the PowerSystemDataModel project, we differentiate between equality and equivalence:
quote(String) - Static method in class edu.ie3.util.StringUtils
Adds quotation marks at the beginning and end of the input, if they are not apparent, yet.
quote(String[]) - Static method in class edu.ie3.util.StringUtils
Quotes all entries of the Array

R

radiusWithCircle(LatLon, Quantity<Length>) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
radiusWithCircleAsPolygon(LatLon, Quantity<Length>) - Static method in class edu.ie3.util.geo.GeoUtils
Draws a circle with a radius of the provided distance around the provided center coordinates and returns the result as a drawable polygon (one point per degree)
rayCasting(Polygon, LatLon) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
read() - Method in class edu.ie3.util.copy.FastByteArrayInputStream
 
read(byte[], int, int) - Method in class edu.ie3.util.copy.FastByteArrayInputStream
 
remove(Object) - Method in class edu.ie3.util.OneToOneMap
 
removeValue(Y) - Method in class edu.ie3.util.OneToOneMap
 
reset() - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
 
RightOpenInterval<T extends java.lang.Comparable<? super T> & java.io.Serializable> - Class in edu.ie3.util.interval
Right open interval.
RightOpenInterval(T, T) - Constructor for class edu.ie3.util.interval.RightOpenInterval
 

S

screamingKebabCase() - Method in class edu.ie3.util.naming.Naming
 
screamingSnakeCase() - Method in class edu.ie3.util.naming.Naming
 
serializeToJson(Serializable) - Static method in class edu.ie3.util.json.JsonUtil
 
SIEMENS_PER_KILOMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Siemens per kilometre
size - Variable in class edu.ie3.util.copy.FastByteArrayOutputStream
 
skip(long) - Method in class edu.ie3.util.copy.FastByteArrayInputStream
 
snakeCase() - Method in class edu.ie3.util.naming.Naming
 
snakeCaseToCamelCase(String) - Static method in class edu.ie3.util.StringUtils
Converts a given snake case string to its lower camel case representation
snakeCaseToPascalCase(String) - Static method in class edu.ie3.util.StringUtils
Converts a given snake case string to its upper camel case (= pascal case) representation
SpecificCapacitance - Interface in edu.ie3.util.quantities.interfaces
 
SpecificConductance - Interface in edu.ie3.util.quantities.interfaces
 
SpecificEnergy - Interface in edu.ie3.util.quantities.interfaces
 
SpecificHeatCapacity - Interface in edu.ie3.util.quantities.interfaces
 
SpecificResistance - Interface in edu.ie3.util.quantities.interfaces
 
StreamUtils - Class in edu.ie3.util
Some useful functions to work with Java's Stream API
StringToIntegerListAdapter - Class in edu.ie3.util.io.xmladapter
Deprecated.
Will be removed in v2.0
StringToIntegerListAdapter() - Constructor for class edu.ie3.util.io.xmladapter.StringToIntegerListAdapter
Deprecated.
 
StringToStringListAdapter - Class in edu.ie3.util.io.xmladapter
Deprecated.
Will be removed in v2.0
StringToStringListAdapter() - Constructor for class edu.ie3.util.io.xmladapter.StringToStringListAdapter
Deprecated.
 
StringUtils - Class in edu.ie3.util
Some useful functions to manipulate Strings
subtract(double[], double[]) - Static method in class edu.ie3.util.ArrayHelper
Element wise subtraction
subtract(Complex[], Complex[]) - Static method in class edu.ie3.util.ArrayHelper
Element wise subtraction
subtract(Quantity<Q>) - Method in class edu.ie3.util.quantities.EmptyQuantity
Deprecated.
EmptyQuantity represents a 'null' value, so you should not perform any operations on this Quantity

T

ThermalConductance - Interface in edu.ie3.util.quantities.interfaces
 
TimeUtil - Class in edu.ie3.util
Utility class that can either be used with default values TimeUtil.withDefaults or as a self parametrized class.
TimeUtil(ZoneId, Locale, String) - Constructor for class edu.ie3.util.TimeUtil
 
toNextFull(ZonedDateTime, ChronoUnit) - Static method in class edu.ie3.util.TimeUtil
Moves the given zoned date time to the next full unit (e.g.
toString() - Method in class edu.ie3.util.geo.CoordinateDistance
 
toString() - Method in class edu.ie3.util.interval.ClosedInterval
 
toString() - Method in class edu.ie3.util.interval.LeftOpenInterval
 
toString() - Method in class edu.ie3.util.interval.OpenInterval
 
toString() - Method in class edu.ie3.util.interval.RightOpenInterval
 
toString() - Method in class edu.ie3.util.naming.Naming
 
toString(Instant) - Method in class edu.ie3.util.TimeUtil
Converts a given instant to a time string
toString(ZonedDateTime) - Method in class edu.ie3.util.TimeUtil
Converts a given ZoneDateTime to a time string
totalLengthOfLineString(LineString) - Static method in class edu.ie3.util.geo.GeoUtils
Calculates the total length of a LineString through building the sum of the distances between all points of LineString using GeoUtils.calcHaversine(double, double, double, double)
toZonedDateTime(String) - Method in class edu.ie3.util.TimeUtil
Returns an ZoneDateTime based on a given String, which can be understood by the class private DateTimeFormatter
trainCase() - Method in class edu.ie3.util.naming.Naming
 

U

unmarshal(String) - Method in class edu.ie3.util.io.xmladapter.StringToIntegerListAdapter
Deprecated.
 
unmarshal(String) - Method in class edu.ie3.util.io.xmladapter.StringToStringListAdapter
Deprecated.
 
unmarshal(Integer) - Method in class edu.ie3.util.io.xmladapter.YearAdapter
Deprecated.
 
unquoteStartEnd(String) - Static method in class edu.ie3.util.StringUtils
Removes double quotes at start and end position of the provided string, if any
upperFlatCase() - Method in class edu.ie3.util.naming.Naming
 

V

valueOf(String) - Static method in enum edu.ie3.util.geo.GeoUtils.ConvexHullAlgorithm
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum edu.ie3.util.geo.GrahamScan.Turn
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum edu.ie3.util.naming.NamingConvention
Returns the enum constant of this type with the specified name.
values() - Static method in enum edu.ie3.util.geo.GeoUtils.ConvexHullAlgorithm
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum edu.ie3.util.geo.GrahamScan.Turn
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum edu.ie3.util.naming.NamingConvention
Returns an array containing the constants of this enum type, in the order they are declared.
VAR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Volt ampere reactive
VARHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
 
VOLTAMPERE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Volt ampere

W

WATT_PER_SQUAREMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Watt per square metre
WATTHOUR - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Watthour
WATTHOUR_PER_METRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Watthour per metre
WATTHOUR_PER_SQUAREMETRE - Static variable in class edu.ie3.util.quantities.PowerSystemUnits
Watthour per squaremetre
wayFromWays(List<Way>, Quantity<Length>, int) - Static method in class edu.ie3.util.geo.GeoUtils
Deprecated.
ATTENTION! DON'T REMOVE: This method is currently not under test and has to be revised thoroughly
withDefaults - Static variable in class edu.ie3.util.TimeUtil
 
write(byte[]) - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
 
write(byte[], int, int) - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
 
write(int) - Method in class edu.ie3.util.copy.FastByteArrayOutputStream
 

X

xyToPoint(double, double) - Static method in class edu.ie3.util.geo.GeoUtils
Wraps XY values in a JTS geometry point

Y

YearAdapter - Class in edu.ie3.util.io.xmladapter
Deprecated.
Will be removed in v2.0
YearAdapter() - Constructor for class edu.ie3.util.io.xmladapter.YearAdapter
Deprecated.
 

Z

zonedDateTimeDifference(ZonedDateTime, ZonedDateTime, ChronoUnit) - Method in class edu.ie3.util.TimeUtil
Calculate the difference between two [[ZonedDateTime]]s and return the difference in the given [[ChronoUnit]]
zonedDateTimeDifferenceInSeconds(ZonedDateTime, ZonedDateTime) - Method in class edu.ie3.util.TimeUtil
Calculate the difference between two given [[ZonedDateTime]]s and return the difference in seconds
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
Skip navigation links