Package org.apache.nutch.parse
Class Outlink
- java.lang.Object
-
- org.apache.nutch.parse.Outlink
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAnchor()
MapWritable
getMetadata()
String
getToUrl()
int
hashCode()
static Outlink
read(DataInput in)
void
readFields(DataInput in)
void
setMetadata(MapWritable md)
void
setUrl(String toUrl)
static void
skip(DataInput in)
Skips over one Outlink in the input.String
toString()
void
write(DataOutput out)
-
-
-
Constructor Detail
-
Outlink
public Outlink()
-
Outlink
public Outlink(String toUrl, String anchor) throws MalformedURLException
- Throws:
MalformedURLException
-
-
Method Detail
-
readFields
public void readFields(DataInput in) throws IOException
- Specified by:
readFields
in interfaceWritable
- Throws:
IOException
-
skip
public static void skip(DataInput in) throws IOException
Skips over one Outlink in the input.- Parameters:
in
- theDataInput
tuple stream holding the toUrl and archor pair.- Throws:
IOException
- if there is an error processing theDataInput
-
write
public void write(DataOutput out) throws IOException
- Specified by:
write
in interfaceWritable
- Throws:
IOException
-
read
public static Outlink read(DataInput in) throws IOException
- Throws:
IOException
-
getToUrl
public String getToUrl()
-
setUrl
public void setUrl(String toUrl)
-
getAnchor
public String getAnchor()
-
getMetadata
public MapWritable getMetadata()
-
setMetadata
public void setMetadata(MapWritable md)
-
-