public static class TriadicCensus.Result extends Object implements PrintableResult
Constructor and Description |
---|
Result(BigInteger... counts) |
Result(long... counts) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
BigInteger |
getCount03()
Get the count of "03" triads which have zero connecting vertices.
|
BigInteger |
getCount12()
Get the count of "12" triads which have one edge among the vertices.
|
BigInteger |
getCount21()
Get the count of "21" triads which have two edges among the vertices and form a open
triplet.
|
BigInteger |
getCount30()
Get the count of "30" triads which have three edges among the vertices and form a closed
triplet, a triangle.
|
BigInteger[] |
getCounts()
Get the array of counts.
|
int |
hashCode() |
String |
toPrintableString()
A human-readable representation of this value.
|
String |
toString() |
public Result(BigInteger... counts)
public Result(long... counts)
public BigInteger getCount03()
public BigInteger getCount12()
public BigInteger getCount21()
public BigInteger getCount30()
public BigInteger[] getCounts()
The order of the counts is from least to most connected: 03, 12, 21, 30
public String toPrintableString()
PrintableResult
toPrintableString
in interface PrintableResult
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.